Uses of Interface
com.google.common.labs.regex.RegexPattern.Quantifier
Packages that use RegexPattern.Quantifier
Package
Description
Regex parser for dev tools (requires dot-parse artifact)
- 
Uses of RegexPattern.Quantifier in com.google.common.labs.regex
Classes in com.google.common.labs.regex that implement RegexPattern.QuantifierModifier and TypeClassDescriptionstatic final recordRepresents a quantifier with a minimum bound, like{min,},*, or+.static final recordRepresents a quantifier with a maximum bound and a minimum of 0, like{0,max}or?.static final recordRepresents 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 thequantifierrecord component.RegexPattern.Quantifier.reluctant()static RegexPattern.QuantifierRegexPattern.Quantifier.repeated(int times) static RegexPattern.QuantifierRegexPattern.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 aQuantifiedrecord class.