public enum EnumCM_SizeDescriptor extends java.lang.Enum<EnumCM_SizeDescriptor>
| Enum Constant and Description |
|---|
ENLARGED |
EXTREMELY_SMALL |
LARGE |
MEDIUM |
SMALL |
TOO_SMALL |
VERY_SMALL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_SizeDescriptor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_SizeDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_SizeDescriptor EXTREMELY_SMALL
public static final EnumCM_SizeDescriptor VERY_SMALL
public static final EnumCM_SizeDescriptor SMALL
public static final EnumCM_SizeDescriptor MEDIUM
public static final EnumCM_SizeDescriptor LARGE
public static final EnumCM_SizeDescriptor ENLARGED
public static final EnumCM_SizeDescriptor TOO_SMALL
public static EnumCM_SizeDescriptor[] values()
for (EnumCM_SizeDescriptor c : EnumCM_SizeDescriptor.values()) System.out.println(c);
public static EnumCM_SizeDescriptor 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()