Package net.sf.saxon.regex.charclass
Class InverseCharacterClass
java.lang.Object
net.sf.saxon.regex.charclass.InverseCharacterClass
- All Implemented Interfaces:
IntPredicate
,CharacterClass
,IntPredicateProxy
A character class represents a set of characters for regex matching purposes. An inverse
character class is the complement of another character class
-
Constructor Summary
ConstructorsConstructorDescriptionInverseCharacterClass
(CharacterClass complement) Create the complement of a character class, that is, a character class containing exactly those characters that are not included in the supplied character class -
Method Summary
Modifier and TypeMethodDescriptionGet the character class of which this class is the complementGet the set of matching characters if available.boolean
isDisjoint
(CharacterClass other) Ask whether this character class is known to be disjoint with another character class (that is, the two classes have no characters in common).boolean
test
(int value) Test whether a particular codepoint is a member of the character classMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.function.IntPredicate
and, negate, or
Methods inherited from interface net.sf.saxon.z.IntPredicateProxy
union
-
Constructor Details
-
InverseCharacterClass
Create the complement of a character class, that is, a character class containing exactly those characters that are not included in the supplied character class- Parameters:
complement
- the class of which this one is the complement
-
-
Method Details
-
getComplement
Get the character class of which this class is the complement- Returns:
- the complement of this character class
-
test
public boolean test(int value) Description copied from interface:CharacterClass
Test whether a particular codepoint is a member of the character class- Specified by:
test
in interfaceCharacterClass
- Specified by:
test
in interfaceIntPredicate
- Specified by:
test
in interfaceIntPredicateProxy
- Parameters:
value
- the codepoint to be tested- Returns:
- true if it matches
-
isDisjoint
Description copied from interface:CharacterClass
Ask whether this character class is known to be disjoint with another character class (that is, the two classes have no characters in common). If in doubt, return false.- Specified by:
isDisjoint
in interfaceCharacterClass
- Parameters:
other
- the other character class- Returns:
- true if the character classes are known to be disjoint; false if there may be characters in common between the two classes
-
getIntSet
Description copied from interface:CharacterClass
Get the set of matching characters if available. If not available, return null- Specified by:
getIntSet
in interfaceCharacterClass
-