public enum StackFilter extends java.lang.Enum<StackFilter> implements IStackFilter
Modifier and Type | Method and Description |
---|---|
abstract boolean |
matches(net.minecraft.item.ItemStack stack)
Check to see if a given stack matches this filter.
|
static StackFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StackFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
and, getExamples
public static final StackFilter ALL
public static final StackFilter FUEL
public static StackFilter[] values()
for (StackFilter c : StackFilter.values()) System.out.println(c);
public static StackFilter 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 abstract boolean matches(@Nonnull net.minecraft.item.ItemStack stack)
IStackFilter
matches
in interface IStackFilter
stack
- The stack to test. stack.isEmpty will always return false.