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