public enum SubareaType extends Enum<SubareaType>
| Enum Constant and Description |
|---|
AssociatedText |
CircleOrPoint |
Polygon |
Polyline |
Rectangle |
Reserved6 |
Reserved7 |
Sector |
| Modifier and Type | Method and Description |
|---|---|
static SubareaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubareaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubareaType CircleOrPoint
public static final SubareaType Rectangle
public static final SubareaType Sector
public static final SubareaType Polyline
public static final SubareaType Polygon
public static final SubareaType AssociatedText
public static final SubareaType Reserved6
public static final SubareaType Reserved7
public static SubareaType[] values()
for (SubareaType c : SubareaType.values()) System.out.println(c);
public static SubareaType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.