| Enum Constant and Description |
|---|
Box
Specifies a box.
|
ConeToMax
Specifies a cone, truncated at value.
|
ConeToPoint
Specifies a cone, coming to a point value.
|
Cylinder
Specifies a cylinder.
|
PyramidToMax
Specifies a pyramid, truncated at value.
|
PyramidToPoint
Specifies a pyramid, coming to a point value.
|
| Modifier and Type | Method and Description |
|---|---|
static BarShape |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarShape Box
public static final BarShape PyramidToPoint
public static final BarShape PyramidToMax
public static final BarShape Cylinder
public static final BarShape ConeToPoint
public static final BarShape ConeToMax
public static BarShape[] values()
for (BarShape c : BarShape.values()) System.out.println(c);
public static BarShape 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