public static enum CubemapUtils.CubemapFaces extends Enum<CubemapUtils.CubemapFaces>
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static Stream<CubemapUtils.CubemapFaces> |
stream() |
static CubemapUtils.CubemapFaces |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CubemapUtils.CubemapFaces[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CubemapUtils.CubemapFaces FRONT
public static final CubemapUtils.CubemapFaces RIGHT
public static final CubemapUtils.CubemapFaces BACK
public static final CubemapUtils.CubemapFaces LEFT
public static final CubemapUtils.CubemapFaces UP
public static final CubemapUtils.CubemapFaces DOWN
public static CubemapUtils.CubemapFaces[] values()
for (CubemapUtils.CubemapFaces c : CubemapUtils.CubemapFaces.values()) System.out.println(c);
public static CubemapUtils.CubemapFaces 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 static Stream<CubemapUtils.CubemapFaces> stream()