Package com.saperion.ws.predicates
Class TruePredicate
- java.lang.Object
-
- com.saperion.ws.predicates.TruePredicate
-
- All Implemented Interfaces:
com.google.common.base.Predicate<SaWsUser>
,CloneablePredicate<SaWsUser>
,java.lang.Cloneable
public class TruePredicate extends java.lang.Object implements CloneablePredicate<SaWsUser>
TruePredicate.
-
-
Constructor Summary
Constructors Constructor Description TruePredicate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
apply(SaWsUser input)
Returns always true.CloneablePredicate<SaWsUser>
clone()
Returns an instance of this object.
-
-
-
Method Detail
-
apply
public boolean apply(SaWsUser input)
Returns always true.- Specified by:
apply
in interfacecom.google.common.base.Predicate<SaWsUser>
- Parameters:
input
- The SaWsUser in question.- Returns:
- Returns always true.
-
clone
public CloneablePredicate<SaWsUser> clone() throws java.lang.CloneNotSupportedException
Returns an instance of this object.- Specified by:
clone
in interfaceCloneablePredicate<SaWsUser>
- Overrides:
clone
in classjava.lang.Object
- Returns:
- This CloneablePredicate object.
- Throws:
java.lang.CloneNotSupportedException
- if clone is not supported
-
-