Package net.sf.saxon.z
Interface IntPredicateProxy
- All Superinterfaces:
- IntPredicate
- All Known Subinterfaces:
- CharacterClass
- All Known Implementing Classes:
- Categories.Category,- EmptyCharacterClass,- IntExceptPredicate,- IntIntersectionPredicate,- IntPredicateLambda,- IntSetCharacterClass,- IntSetPredicate,- IntUnionPredicate,- IntValuePredicate,- InverseCharacterClass,- PredicateCharacterClass,- SingletonCharacterClass
This interface represents an integer predicate (that is, a boolean function of an integer).
 It is provided for the purpose of C# transpilation: in Java, an IntPredicate can be implemented
 either as a class implementing 
IntPredicate, or as a lambda expression,
 but this duality is not available in C#. A class that implements IntPredicate
 should therefore implement this extension of the interface, so that it can be transpiled to C#.- 
Method SummaryModifier and TypeMethodDescriptionbooleantest(int value) default IntPredicateProxyunion(IntPredicateProxy other) Methods inherited from interface java.util.function.IntPredicateand, negate, or
- 
Method Details- 
testboolean test(int value) - Specified by:
- testin interface- IntPredicate
 
- 
union
 
-