public static enum MatterProperty.Matter extends Enum<MatterProperty.Matter>
Modifier and Type | Method and Description |
---|---|
static MatterProperty.Matter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatterProperty.Matter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatterProperty.Matter SOLID
public static final MatterProperty.Matter LIQUID
public static final MatterProperty.Matter GAS
public static MatterProperty.Matter[] values()
for (MatterProperty.Matter c : MatterProperty.Matter.values()) System.out.println(c);
public static MatterProperty.Matter 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 null