public static enum Dimension.DimensionType extends java.lang.Enum<Dimension.DimensionType>
| Enum Constant and Description |
|---|
DEFAULT
The default.
|
EXPLICIT
The explicit.
|
IDENTIFIER
The identifier.
|
PERIOD
The period.
|
TYPED
The typed.
|
UNKOWN
The unkown.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getType()
Gets the type.
|
static Dimension.DimensionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dimension.DimensionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dimension.DimensionType UNKOWN
public static final Dimension.DimensionType EXPLICIT
public static final Dimension.DimensionType TYPED
public static final Dimension.DimensionType IDENTIFIER
public static final Dimension.DimensionType PERIOD
public static final Dimension.DimensionType DEFAULT
public static Dimension.DimensionType[] values()
for (Dimension.DimensionType c : Dimension.DimensionType.values()) System.out.println(c);
public static Dimension.DimensionType 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 int getType()