T - the returned value type.public final class Constant<T> extends Object implements Function<T>, UnaryFunction<Object,T>, BinaryFunction<Object,Object,T>, Predicate, UnaryPredicate<Object>, BinaryPredicate<Object,Object>, Serializable
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.
| Modifier and Type | Field and Description |
|---|---|
static Constant<Boolean> |
FALSE
Constant for
false. |
static Constant<Boolean> |
TRUE
Constant for
true. |
| Constructor and Description |
|---|
Constant(T value)
Create a new Constant.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Constant<?> that)
Learn whether another Constant is equal to this.
|
boolean |
equals(Object that) |
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() |
static <T> Constant<T> |
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() |
static Constant<Boolean> |
truePredicate()
Get a
Constant that always
returns true. |
public T evaluate(Object obj)
evaluate in interface UnaryFunction<Object,T>obj - the A object to evaluatepublic 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 argumentspublic boolean test()
public boolean test(Object obj)
test in interface UnaryPredicate<Object>obj - the A object to testpublic 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 argumentspublic boolean equals(Constant<?> that)
that - Constant to testpublic 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 valueConstant that always
returns valueCopyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.