Package jadex.commons
Class ConstantFilter<T>
- java.lang.Object
- 
- jadex.commons.ConstantFilter<T>
 
- 
- 
Constructor SummaryConstructors Constructor Description ConstantFilter()Create filter instance.ConstantFilter(boolean value)Create filter instance.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Is equal?booleanfilter(T obj)Test if an object passes the filter.inthashCode()Hash code.booleanisValue()Get the value.voidsetValue(boolean value)Set the value.
 
- 
- 
- 
Method Detail- 
filterpublic boolean filter(T obj) Test if an object passes the filter.
 - 
isValuepublic boolean isValue() Get the value.- Returns:
- the value.
 
 - 
setValuepublic void setValue(boolean value) Set the value.- Parameters:
- value- The value to set.
 
 - 
equalspublic boolean equals(java.lang.Object obj) Is equal?- Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() Hash code.- Overrides:
- hashCodein class- java.lang.Object
 
 
- 
 
-