public enum EnumFilterMaterial extends java.lang.Enum<EnumFilterMaterial>
| Enum Constant and Description |
|---|
ALUMINUM
The ALUMINUM.
|
COPPER
The COPPER.
|
EUROPIUM
The EUROPIUM.
|
LEAD
The LEAD.
|
MOLYBDENUM
The MOLYBDENUM.
|
NIOBIUM
The NIOBIUM.
|
RHODIUM
The RHODIUM.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumFilterMaterial |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFilterMaterial[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFilterMaterial MOLYBDENUM
public static final EnumFilterMaterial ALUMINUM
public static final EnumFilterMaterial COPPER
public static final EnumFilterMaterial RHODIUM
public static final EnumFilterMaterial NIOBIUM
public static final EnumFilterMaterial EUROPIUM
public static final EnumFilterMaterial LEAD
public static EnumFilterMaterial[] values()
for (EnumFilterMaterial c : EnumFilterMaterial.values()) System.out.println(c);
public static EnumFilterMaterial 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 nullpublic java.lang.String getValue()