public enum FaceMode extends Enum<FaceMode> implements IEnumWithValue
| Enum Constant and Description |
|---|
BACK
Back-facing polygons.
|
FRONT
Front-facing polygons.
|
FRONT_AND_BACK
Front- and back-facing polygons.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static FaceMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FaceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final FaceMode BACK
public static final FaceMode FRONT
public static final FaceMode FRONT_AND_BACK
public static FaceMode[] values()
for (FaceMode c : FaceMode.values()) System.out.println(c);
public static FaceMode 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 nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.