public enum EnumAccumulator extends java.lang.Enum<EnumAccumulator>
| Enum Constant and Description |
|---|
FLUXED |
IRON |
REINFROCED_STONE |
STEEL |
| Modifier and Type | Method and Description |
|---|---|
long |
getCapacity() |
long |
getInput() |
long |
getOutput() |
void |
setCapacity(long capacity) |
void |
setInput(long input) |
void |
setOutput(long output) |
static EnumAccumulator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAccumulator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAccumulator REINFROCED_STONE
public static final EnumAccumulator IRON
public static final EnumAccumulator STEEL
public static final EnumAccumulator FLUXED
public static EnumAccumulator[] values()
for (EnumAccumulator c : EnumAccumulator.values()) System.out.println(c);
public static EnumAccumulator 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 long getCapacity()
public void setCapacity(long capacity)
public long getInput()
public void setInput(long input)
public long getOutput()
public void setOutput(long output)