public enum EnumSCPType extends java.lang.Enum<EnumSCPType>
| Enum Constant and Description |
|---|
CECHO_SCP
String value representing fully qualified name of CECHO SCP
|
CFIND_SCP
String value representing fully qualified name of CFind SCP
|
CGET_SCP
String value representing fully qualified name of CGet SCP
|
CMOVE_SCP
String value representing fully qualified name of CMove SCP
|
CSTORE_SCP
String value representing fully qualified name of CStore SCP
|
NACTION_SCP
String value representing fully qualified name of NAction SCP
|
NCREATE_SCP
String value representing fully qualified name of NCreate SCP
|
NDELETE_SCP
String value representing fully qualified name of NDelete SCP
|
NEVENTREPORT_SCP
String value representing fully qualified name of NEventReport SCP
|
NGET_SCP
String value representing fully qualified name of NGet SCP
|
NSET_SCP
String value representing fully qualified name of NSet SCP
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumSCPType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSCPType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSCPType CECHO_SCP
public static final EnumSCPType CSTORE_SCP
public static final EnumSCPType CFIND_SCP
public static final EnumSCPType CGET_SCP
public static final EnumSCPType CMOVE_SCP
public static final EnumSCPType NCREATE_SCP
public static final EnumSCPType NSET_SCP
public static final EnumSCPType NGET_SCP
public static final EnumSCPType NDELETE_SCP
public static final EnumSCPType NEVENTREPORT_SCP
public static final EnumSCPType NACTION_SCP
public static EnumSCPType[] values()
for (EnumSCPType c : EnumSCPType.values()) System.out.println(c);
public static EnumSCPType 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 java.lang.String getValue()