|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.functor.core.Constant<T>
T - the returned value type.public final class Constant<T>
Evaluates to constant value.
Tests to a constant value, assuming
a boolean of Boolean value is supplied.
Note that although this class implements
Serializable, a given instance will
only be truly Serializable if the
constant Object is. Attempts to serialize
an instance whose value is not
Serializable will result in an exception.
| Field Summary | |
|---|---|
static Constant<Boolean> |
FALSE
Constant for false. |
static Constant<Boolean> |
TRUE
Constant for true. |
| Constructor Summary | |
|---|---|
Constant(T value)
Create a new Constant. |
|
| Method Summary | ||
|---|---|---|
boolean |
equals(Constant<?> that)
Learn whether another Constant is equal to this. |
|
boolean |
equals(Object that)
Indicates whether some other object is "equal to" this functor. |
|
T |
evaluate()
Evaluate this function. |
|
T |
evaluate(Object obj)
Evaluate this function. |
|
T |
evaluate(Object left,
Object right)
Evaluate this function. |
|
static Constant<Boolean> |
falsePredicate()
Get a Constant that always
returns false. |
|
int |
hashCode()
Returns a hash code for this functor adhering to the general Object.hashCode contract. |
|
static
|
of(T value)
Get a Constant instance for the specified value. |
|
static Constant<Boolean> |
predicate(boolean value)
Get a Constant that always
returns value. |
|
boolean |
test()
Evaluate this predicate. |
|
boolean |
test(Object obj)
Evaluate this predicate. |
|
boolean |
test(Object left,
Object right)
Evaluate this predicate. |
|
String |
toString()
Returns a human readable description of this functor. |
|
static Constant<Boolean> |
truePredicate()
Get a Constant that always
returns true. |
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final Constant<Boolean> TRUE
true.
public static final Constant<Boolean> FALSE
false.
| Constructor Detail |
|---|
public Constant(T value)
value - Object| Method Detail |
|---|
public T evaluate()
evaluate in interface Function<T>public T evaluate(Object obj)
evaluate in interface UnaryFunction<Object,T>obj - the A object to evaluate
public T evaluate(Object left,
Object right)
evaluate in interface BinaryFunction<Object,Object,T>left - the L element of the ordered pair of argumentsright - the R element of the ordered pair of arguments
public boolean test()
test in interface Predicatepublic boolean test(Object obj)
test in interface UnaryPredicate<Object>obj - the A object to test
public boolean test(Object left,
Object right)
test in interface BinaryPredicate<Object,Object>left - the L element of the ordered pair of argumentsright - the R element of the ordered pair of arguments
public boolean equals(Object that)
Object.equals contract.
Additionally, this method can return
true only if the specified Object implements
the same functor interface and is known to produce the same
results and/or side-effects for the same arguments (if any).
While implementators are strongly encouraged to override
the default Object implementation of this method,
note that the default Object implementation
does in fact adhere to the functor equals contract.
equals in interface Functorequals in class Objectthat - the object to compare this functor to
true iff the given object implements
this functor interface, and is known to produce the same
results and/or side-effects for the same arguments
(if any).Functor.hashCode()public boolean equals(Constant<?> that)
that - Constant to test
public int hashCode()
Object.hashCode contract.
Implementators are strongly encouraged but not
strictly required to override the default Object
implementation of this method.
hashCode in interface FunctorhashCode in class ObjectFunctor.equals(java.lang.Object)public String toString()
Object
implementation of this method.
toString in interface FunctortoString in class Objectpublic static Constant<Boolean> truePredicate()
Constant that always
returns true.
Constant that always
returns truepublic static Constant<Boolean> falsePredicate()
Constant that always
returns false.
Constant that always
returns falsepublic static Constant<Boolean> predicate(boolean value)
Constant that always
returns value.
value - the constant value
Constant that always
returns valuepublic static <T> Constant<T> of(T value)
T - the constant valuevalue - T
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||