public static enum IFluidHandler.FluidAction extends java.lang.Enum<IFluidHandler.FluidAction>
Modifier and Type | Method and Description |
---|---|
boolean |
execute() |
boolean |
simulate() |
static IFluidHandler.FluidAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IFluidHandler.FluidAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFluidHandler.FluidAction EXECUTE
public static final IFluidHandler.FluidAction SIMULATE
public static IFluidHandler.FluidAction[] values()
for (IFluidHandler.FluidAction c : IFluidHandler.FluidAction.values()) System.out.println(c);
public static IFluidHandler.FluidAction 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 boolean execute()
public boolean simulate()