public static enum PinFigure.DisplayType extends java.lang.Enum<PinFigure.DisplayType>
Enum Constant and Description |
---|
DATA
The state-point data view, which displays a text label with data
pertaining to a specific feature.
|
GEOMETRY
The geometry view, which displays the rod as a radial slice of
materials.
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
name
The user-friendly name of the DisplayType.
|
Modifier and Type | Method and Description |
---|---|
static PinFigure.DisplayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PinFigure.DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinFigure.DisplayType GEOMETRY
public static final PinFigure.DisplayType DATA
public static PinFigure.DisplayType[] values()
for (PinFigure.DisplayType c : PinFigure.DisplayType.values()) System.out.println(c);
public static PinFigure.DisplayType 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