-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDuration.java
More file actions
41 lines (38 loc) · 1.79 KB
/
Duration.java
File metadata and controls
41 lines (38 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Generated automatically from javafx.util.Duration for testing purposes
package javafx.util;
import java.io.Serializable;
public class Duration implements Serializable, java.lang.Comparable<Duration>
{
protected Duration() {}
public Duration add(Duration p0){ return null; }
public Duration divide(Duration p0){ return null; }
public Duration divide(double p0){ return null; }
public Duration multiply(Duration p0){ return null; }
public Duration multiply(double p0){ return null; }
public Duration negate(){ return null; }
public Duration subtract(Duration p0){ return null; }
public Duration(double p0){}
public String toString(){ return null; }
public boolean equals(Object p0){ return false; }
public boolean greaterThan(Duration p0){ return false; }
public boolean greaterThanOrEqualTo(Duration p0){ return false; }
public boolean isIndefinite(){ return false; }
public boolean isUnknown(){ return false; }
public boolean lessThan(Duration p0){ return false; }
public boolean lessThanOrEqualTo(Duration p0){ return false; }
public double toHours(){ return 0; }
public double toMillis(){ return 0; }
public double toMinutes(){ return 0; }
public double toSeconds(){ return 0; }
public int compareTo(Duration p0){ return 0; }
public int hashCode(){ return 0; }
public static Duration INDEFINITE = null;
public static Duration ONE = null;
public static Duration UNKNOWN = null;
public static Duration ZERO = null;
public static Duration hours(double p0){ return null; }
public static Duration millis(double p0){ return null; }
public static Duration minutes(double p0){ return null; }
public static Duration seconds(double p0){ return null; }
public static Duration valueOf(String p0){ return null; }
}