public enum EnumCompoundGraphicType extends java.lang.Enum<EnumCompoundGraphicType>
| Enum Constant and Description |
|---|
ARROW
The ARROW.
|
AXIS
The AXIS.
|
CROSSHAIR
The CROSSHAIR.
|
CUTLINE
The CUTLINE.
|
ELLIPSE
The ELLIPSE.
|
INFINITELINE
The INFINITELINE.
|
MULTILINE
The MULTILINE.
|
RANGELINE
The RANGELINE.
|
RECTANGLE
The RECTANGLE.
|
RULER
The RULER.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumCompoundGraphicType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCompoundGraphicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCompoundGraphicType MULTILINE
public static final EnumCompoundGraphicType INFINITELINE
public static final EnumCompoundGraphicType CUTLINE
public static final EnumCompoundGraphicType RANGELINE
public static final EnumCompoundGraphicType RULER
public static final EnumCompoundGraphicType AXIS
public static final EnumCompoundGraphicType CROSSHAIR
public static final EnumCompoundGraphicType ARROW
public static final EnumCompoundGraphicType RECTANGLE
public static final EnumCompoundGraphicType ELLIPSE
public static EnumCompoundGraphicType[] values()
for (EnumCompoundGraphicType c : EnumCompoundGraphicType.values()) System.out.println(c);
public static EnumCompoundGraphicType 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 java.lang.String getValue()