public static enum Requirement.TransferStatus extends java.lang.Enum<Requirement.TransferStatus>
Enum Constant and Description |
---|
COMPLETE |
FAILED |
INCOMPLETE |
Modifier and Type | Method and Description |
---|---|
boolean |
isBetterThan(Requirement.TransferStatus other) |
static Requirement.TransferStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Requirement.TransferStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Requirement.TransferStatus FAILED
public static final Requirement.TransferStatus INCOMPLETE
public static final Requirement.TransferStatus COMPLETE
public static Requirement.TransferStatus[] values()
for (Requirement.TransferStatus c : Requirement.TransferStatus.values()) System.out.println(c);
public static Requirement.TransferStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isBetterThan(Requirement.TransferStatus other)