public enum EnumGraphicType extends java.lang.Enum<EnumGraphicType>
| Enum Constant and Description |
|---|
CIRCLE
The CIRCLE.
|
ELLIPSE
The ELLIPSE.
|
INTERPOLATED
The INTERPOLATED.
|
MULTIPOINT
The MULTIPOINT
|
POINT
The POINT.
|
POLYGON
The POLYGON.
|
POLYLINE
The POLYLINE.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumGraphicType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumGraphicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumGraphicType POINT
public static final EnumGraphicType POLYGON
public static final EnumGraphicType POLYLINE
public static final EnumGraphicType INTERPOLATED
public static final EnumGraphicType CIRCLE
public static final EnumGraphicType MULTIPOINT
public static final EnumGraphicType ELLIPSE
public static EnumGraphicType[] values()
for (EnumGraphicType c : EnumGraphicType.values()) System.out.println(c);
public static EnumGraphicType 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()