public enum PolyIntent extends java.lang.Enum<PolyIntent>
Modifier and Type | Class and Description |
---|---|
static class |
PolyIntent.Adapter |
Enum Constant and Description |
---|
POLYGONCLOUD |
POLYGONDIMENSION |
POLYLINEDIMENSION |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static PolyIntent |
fromValue(java.lang.String text) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static PolyIntent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PolyIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolyIntent UNDEFINED
public static final PolyIntent POLYGONCLOUD
public static final PolyIntent POLYLINEDIMENSION
public static final PolyIntent POLYGONDIMENSION
public static PolyIntent[] values()
for (PolyIntent c : PolyIntent.values()) System.out.println(c);
public static PolyIntent 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()
public java.lang.String toString()
toString
in class java.lang.Enum<PolyIntent>
public static PolyIntent fromValue(java.lang.String text)