Enum EnclosureLevel.Material
- java.lang.Object
-
- java.lang.Enum<EnclosureLevel.Material>
-
- one.empty3.library.shader.language.cpp.EnclosureLevel.Material
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnclosureLevel.Material>
- Enclosing class:
- EnclosureLevel
public static enum EnclosureLevel.Material extends java.lang.Enum<EnclosureLevel.Material>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Bit
Char
File
Jar
RelativeDirectory
Str
VmInstance
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EnclosureLevel.Material
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnclosureLevel.Material[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VmInstance
public static final EnclosureLevel.Material VmInstance
-
Jar
public static final EnclosureLevel.Material Jar
-
RelativeDirectory
public static final EnclosureLevel.Material RelativeDirectory
-
File
public static final EnclosureLevel.Material File
-
Str
public static final EnclosureLevel.Material Str
-
Char
public static final EnclosureLevel.Material Char
-
Bit
public static final EnclosureLevel.Material Bit
-
-
Method Detail
-
values
public static EnclosureLevel.Material[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EnclosureLevel.Material c : EnclosureLevel.Material.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnclosureLevel.Material valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-