Package com.exedio.cope
Class InstanceOfCondition<E extends Item>
- java.lang.Object
-
- com.exedio.cope.Condition
-
- com.exedio.cope.InstanceOfCondition<E>
-
- All Implemented Interfaces:
Serializable
public final class InstanceOfCondition<E extends Item> extends Condition
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InstanceOfCondition(ItemFunction<E> function, boolean not, Type<?>[] types)
Instead of using this constructor directly, you may want to use the convenience methods.InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1)
InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1, Type<? extends E> type2)
InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1, Type<? extends E> type2, Type<? extends E> type3)
InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1, Type<? extends E> type2, Type<? extends E> type3, Type<? extends E> type4)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
int
hashCode()
-
-
-
Constructor Detail
-
InstanceOfCondition
public InstanceOfCondition(ItemFunction<E> function, boolean not, Type<?>[] types)
Instead of using this constructor directly, you may want to use the convenience methods.- See Also:
ItemFunction.instanceOf(Type)
,ItemFunction.instanceOf(Type, Type)
,ItemFunction.instanceOf(Type, Type, Type)
,ItemFunction.instanceOf(Type, Type, Type, Type)
,ItemFunction.instanceOf(Type[])
,ItemFunction.notInstanceOf(Type)
,ItemFunction.notInstanceOf(Type, Type)
,ItemFunction.notInstanceOf(Type, Type, Type)
,ItemFunction.notInstanceOf(Type, Type, Type, Type)
,ItemFunction.notInstanceOf(Type[])
-
InstanceOfCondition
public InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1)
-
InstanceOfCondition
public InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1, Type<? extends E> type2)
-
InstanceOfCondition
public InstanceOfCondition(ItemFunction<E> function, boolean not, Type<? extends E> type1, Type<? extends E> type2, Type<? extends E> type3)
-
-