public static enum FluidHelper.FillStatus extends java.lang.Enum<FluidHelper.FillStatus>
| Enum Constant and Description |
|---|
INVALID_INPUT |
NO_FLUID |
NO_SPACE |
NO_SPACE_FLUID |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static FluidHelper.FillStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FluidHelper.FillStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FluidHelper.FillStatus SUCCESS
public static final FluidHelper.FillStatus INVALID_INPUT
public static final FluidHelper.FillStatus NO_FLUID
public static final FluidHelper.FillStatus NO_SPACE
public static final FluidHelper.FillStatus NO_SPACE_FLUID
public static FluidHelper.FillStatus[] values()
for (FluidHelper.FillStatus c : FluidHelper.FillStatus.values()) System.out.println(c);
public static FluidHelper.FillStatus 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 null