public static enum CodeAreaSpace.SpaceType extends java.lang.Enum<CodeAreaSpace.SpaceType>
Enum Constant and Description |
---|
DOUBLE_UNIT |
HALF_UNIT |
NONE |
ONE_AND_HALF_UNIT |
ONE_UNIT |
QUARTER_UNIT |
SPECIFIED |
Modifier and Type | Method and Description |
---|---|
static CodeAreaSpace.SpaceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeAreaSpace.SpaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeAreaSpace.SpaceType NONE
public static final CodeAreaSpace.SpaceType SPECIFIED
public static final CodeAreaSpace.SpaceType QUARTER_UNIT
public static final CodeAreaSpace.SpaceType HALF_UNIT
public static final CodeAreaSpace.SpaceType ONE_UNIT
public static final CodeAreaSpace.SpaceType ONE_AND_HALF_UNIT
public static final CodeAreaSpace.SpaceType DOUBLE_UNIT
public static CodeAreaSpace.SpaceType[] values()
for (CodeAreaSpace.SpaceType c : CodeAreaSpace.SpaceType.values()) System.out.println(c);
public static CodeAreaSpace.SpaceType 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