public enum StringType extends Enum<StringType>
Enum Constant and Description |
---|
C_OCTEC_STRING
String delimited by null value.
|
OCTET_STRING
String that determined by the length.
|
Modifier and Type | Method and Description |
---|---|
static StringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringType C_OCTEC_STRING
public static final StringType OCTET_STRING
public static StringType[] values()
for (StringType c : StringType.values()) System.out.println(c);
public static StringType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null