public static enum Painter.Geometry extends Enum<Painter.Geometry>
Modifier and Type | Method and Description |
---|---|
static Painter.Geometry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Painter.Geometry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Painter.Geometry POINT
public static final Painter.Geometry LINE
public static final Painter.Geometry POLYGON
public static Painter.Geometry[] values()
for (Painter.Geometry c : Painter.Geometry.values()) System.out.println(c);
public static Painter.Geometry 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 © 2018. All rights reserved.