public static enum RenderProps.LineStyle extends java.lang.Enum<RenderProps.LineStyle>
Enum Constant and Description |
---|
CYLINDER |
ELLIPSOID |
LINE |
SOLID_ARROW |
Modifier and Type | Method and Description |
---|---|
static RenderProps.LineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderProps.LineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderProps.LineStyle LINE
public static final RenderProps.LineStyle CYLINDER
public static final RenderProps.LineStyle SOLID_ARROW
public static final RenderProps.LineStyle ELLIPSOID
public static RenderProps.LineStyle[] values()
for (RenderProps.LineStyle c : RenderProps.LineStyle.values()) System.out.println(c);
public static RenderProps.LineStyle 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 null