Class IsEqual
- java.lang.Object
-
- uk.gov.gchq.koryphe.predicate.KoryphePredicate<Object>
-
- uk.gov.gchq.koryphe.impl.predicate.IsEqual
-
public class IsEqual extends KoryphePredicate<Object>
AnIsEqual
is aPredicate
that checks that the input is equal to a control value.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Object
getControlValue()
int
hashCode()
void
setControlValue(Object controlValue)
boolean
test(Object input)
String
toString()
-
-
-
Constructor Detail
-
IsEqual
public IsEqual()
-
IsEqual
public IsEqual(Object controlValue)
-
-
Method Detail
-
getControlValue
public Object getControlValue()
-
setControlValue
public void setControlValue(Object controlValue)
-
test
public boolean test(Object input)
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classKoryphePredicate<Object>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classKoryphePredicate<Object>
-
-