public enum DotSplines extends Enum<DotSplines>
Modifier and Type | Method and Description |
---|---|
static DotSplines |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DotSplines[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DotSplines POLYLINE
public static final DotSplines ORTHO
public static final DotSplines SPLINES
public static DotSplines[] values()
for (DotSplines c : DotSplines.values()) System.out.println(c);
public static DotSplines 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 © 2017. All Rights Reserved.