Uses of Interface
com.google.common.labs.regex.RegexPattern.Quantifier
Packages that use RegexPattern.Quantifier
-
Uses of RegexPattern.Quantifier in com.google.common.labs.regex
Classes in com.google.common.labs.regex that implement RegexPattern.QuantifierModifier and TypeClassDescriptionstatic final record
Represents a quantifier with a minimum bound, like{min,}
,*
, or+
.static final record
Represents a quantifier with a maximum bound and a minimum of 0, like{0,max}
or?
.static final record
Represents a quantifier with both minimum and maximum bounds, like{n}
or{min,max}
.Methods in com.google.common.labs.regex that return RegexPattern.QuantifierModifier and TypeMethodDescriptionRegexPattern.Quantifier.possessive()
RegexPattern.Quantified.quantifier()
Returns the value of thequantifier
record component.RegexPattern.Quantifier.reluctant()
static RegexPattern.Quantifier
RegexPattern.Quantifier.repeated
(int times) static RegexPattern.Quantifier
RegexPattern.Quantifier.repeated
(int min, int max) Constructors in com.google.common.labs.regex with parameters of type RegexPattern.QuantifierModifierConstructorDescriptionQuantified
(RegexPattern element, RegexPattern.Quantifier quantifier) Creates an instance of aQuantified
record class.