enum FigureAttribute extends java.lang.Enum<FigureAttribute>
| Enum Constant and Description |
|---|
ExteriorRing |
InteriorRing |
Stroke |
| Modifier and Type | Field and Description |
|---|---|
(package private) byte |
byteValue |
| Modifier and Type | Method and Description |
|---|---|
(package private) static FigureAttribute |
valueOf(byte b) |
static FigureAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FigureAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FigureAttribute InteriorRing
public static final FigureAttribute Stroke
public static final FigureAttribute ExteriorRing
public static FigureAttribute[] values()
for (FigureAttribute c : FigureAttribute.values()) System.out.println(c);
public static FigureAttribute 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 nullstatic FigureAttribute valueOf(byte b)