Uses of Interface
com.google.common.labs.regex.RegexPattern.CharacterSet
Packages that use RegexPattern.CharacterSet
Package
Description
Regex parser for dev tools (requires dot-parse artifact)
-
Uses of RegexPattern.CharacterSet in com.google.common.labs.regex
Classes in com.google.common.labs.regex that implement RegexPattern.CharacterSetModifier and TypeClassDescriptionstatic final recordA positive character class, like[a-z].static final recordAn intersection of character classes, like[a-z&&[^bc]].static final recordA negated character class, like[^a-z].Methods in com.google.common.labs.regex that return types with arguments of type RegexPattern.CharacterSetModifier and TypeMethodDescriptionRegexPattern.asIntersection()A collector that collects the inputCharacterSetas an intersection.RegexPattern.asIntersection()A collector that collects the inputCharacterSetas an intersection.RegexPattern.CharacterSet.Intersection.operands()Returns the value of theoperandsrecord component.Methods in com.google.common.labs.regex with parameters of type RegexPattern.CharacterSetModifier and TypeMethodDescriptionRegexPattern.intersection(RegexPattern.CharacterSet... operands) Returns a character set intersection of the given character sets.Method parameters in com.google.common.labs.regex with type arguments of type RegexPattern.CharacterSetModifier and TypeMethodDescriptionRegexPattern.intersection(Collection<? extends RegexPattern.CharacterSet> operands) Returns a character set intersection of the given character sets.Constructor parameters in com.google.common.labs.regex with type arguments of type RegexPattern.CharacterSetModifierConstructorDescriptionIntersection(List<RegexPattern.CharacterSet> operands) Creates an instance of aIntersectionrecord class.