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