public enum EnumEarlyFailedStatus extends java.lang.Enum<EnumEarlyFailedStatus> implements IStatus
| Enum Constant and Description |
|---|
DATASET_COMMANDSET_SOP_NOT_MATCHED
short value representing early failure data set and command set sop does not match
|
NO_EARLY_FAILED
short value representing no early failed
|
SOP_CLASS_NOT_SUPPORTED
short value representing early failure SOP Class not supported
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the short value of this enum.
|
static EnumEarlyFailedStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumEarlyFailedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumEarlyFailedStatus NO_EARLY_FAILED
public static final EnumEarlyFailedStatus SOP_CLASS_NOT_SUPPORTED
public static final EnumEarlyFailedStatus DATASET_COMMANDSET_SOP_NOT_MATCHED
public static EnumEarlyFailedStatus[] values()
for (EnumEarlyFailedStatus c : EnumEarlyFailedStatus.values()) System.out.println(c);
public static EnumEarlyFailedStatus 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 null