public enum NosTransferStatus extends java.lang.Enum<NosTransferStatus>
Enum Constant and Description |
---|
def
The default value.
|
fail
Failed
|
transferred
Completed
|
transferring
Transferring
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static NosTransferStatus |
statusOfValue(int status) |
static NosTransferStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NosTransferStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NosTransferStatus def
public static final NosTransferStatus transferring
public static final NosTransferStatus transferred
public static final NosTransferStatus fail
public static NosTransferStatus[] values()
for (NosTransferStatus c : NosTransferStatus.values()) System.out.println(c);
public static NosTransferStatus 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 static NosTransferStatus statusOfValue(int status)
public int getValue()