public enum EnumCStoreStatus extends java.lang.Enum<EnumCStoreStatus> implements IStatus
| Enum Constant and Description |
|---|
FAILURE_SOP_CLASS_NOT_SUPPORTED
short value representing failure status
|
PROCESSING_FAILURE
short value representing processing failure status
|
SUCCESS
short value representing success status
|
UNABLE_TO_PROCESS_PARSING_FAILED
short value representing processing failure due to Parsing failed
|
WARNING_COERCION_OF_DATA_ELEMENTS
short value representing warning status
|
WARNING_DATASET_NOT_MATCH_SOP_CLASS
short value representing warning status
|
WARNING_ELEMENTS_DISCARDED
short value representing warning status
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
Returns the short value of this enum.
|
static EnumCStoreStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCStoreStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCStoreStatus WARNING_COERCION_OF_DATA_ELEMENTS
public static final EnumCStoreStatus WARNING_DATASET_NOT_MATCH_SOP_CLASS
public static final EnumCStoreStatus WARNING_ELEMENTS_DISCARDED
public static final EnumCStoreStatus FAILURE_SOP_CLASS_NOT_SUPPORTED
public static final EnumCStoreStatus PROCESSING_FAILURE
public static final EnumCStoreStatus SUCCESS
public static final EnumCStoreStatus UNABLE_TO_PROCESS_PARSING_FAILED
public static EnumCStoreStatus[] values()
for (EnumCStoreStatus c : EnumCStoreStatus.values()) System.out.println(c);
public static EnumCStoreStatus 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