public static enum Line3D.LineType extends Enum<Line3D.LineType>
| Enum Constant and Description |
|---|
BOX
A box type line is used.
|
CYLINDER
A cylinder type line is used.
|
| Modifier and Type | Method and Description |
|---|---|
static Line3D.LineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Line3D.LineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Line3D.LineType BOX
public static final Line3D.LineType CYLINDER
public static Line3D.LineType[] values()
for (Line3D.LineType c : Line3D.LineType.values()) System.out.println(c);
public static Line3D.LineType 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 © 2015–2017 openbase.org. All rights reserved.