public enum MosaicSupplyType extends java.lang.Enum<MosaicSupplyType>
| Enum Constant and Description |
|---|
DECREASE
Decrease the supply.
|
INCREASE
Increase the supply.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static MosaicSupplyType |
rawValueOf(int value) |
static MosaicSupplyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MosaicSupplyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MosaicSupplyType DECREASE
public static final MosaicSupplyType INCREASE
public static MosaicSupplyType[] values()
for (MosaicSupplyType c : MosaicSupplyType.values()) System.out.println(c);
public static MosaicSupplyType 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 static MosaicSupplyType rawValueOf(int value)
public int getValue()