public static enum Constants.ShapeType extends Enum<Constants.ShapeType>
Modifier and Type | Method and Description |
---|---|
int |
unwrap() |
static Constants.ShapeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.ShapeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.ShapeType Group
public static final Constants.ShapeType Path
public static final Constants.ShapeType Geometry
public static Constants.ShapeType[] values()
for (Constants.ShapeType c : Constants.ShapeType.values()) System.out.println(c);
public static Constants.ShapeType 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 nullpublic int unwrap()