public enum ChemistryTableType extends Enum<ChemistryTableType>
| Enum Constant and Description |
|---|
COMPOUND_CREATOR |
ELEMENT_CONSTRUCTOR |
LAB_TABLE |
MATERIAL_REDUCER |
| Modifier and Type | Method and Description |
|---|---|
static ChemistryTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChemistryTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChemistryTableType COMPOUND_CREATOR
public static final ChemistryTableType MATERIAL_REDUCER
public static final ChemistryTableType ELEMENT_CONSTRUCTOR
public static final ChemistryTableType LAB_TABLE
public static ChemistryTableType[] values()
for (ChemistryTableType c : ChemistryTableType.values()) System.out.println(c);
public static ChemistryTableType 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 nullCopyright © 2020. All rights reserved.