public static enum PointModel.DemoType extends java.lang.Enum<PointModel.DemoType>
Modifier and Type | Method and Description |
---|---|
static PointModel.DemoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointModel.DemoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointModel.DemoType Point1d
public static final PointModel.DemoType Point2d
public static final PointModel.DemoType Point3d
public static PointModel.DemoType[] values()
for (PointModel.DemoType c : PointModel.DemoType.values()) System.out.println(c);
public static PointModel.DemoType 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