Uses of Interface
org.apache.commons.text.CharacterPredicate
-
Packages that use CharacterPredicate Package Description org.apache.commons.text Basic classes for text handling. -
-
Uses of CharacterPredicate in org.apache.commons.text
Classes in org.apache.commons.text that implement CharacterPredicate Modifier and Type Class Description class
CharacterPredicates
Commonly used implementations ofCharacterPredicate
.Fields in org.apache.commons.text with type parameters of type CharacterPredicate Modifier and Type Field Description private java.util.Set<CharacterPredicate>
RandomStringGenerator.Builder. inclusivePredicates
Filters for code points.private java.util.Set<CharacterPredicate>
RandomStringGenerator. inclusivePredicates
Filters for code points.Methods in org.apache.commons.text with parameters of type CharacterPredicate Modifier and Type Method Description RandomStringGenerator.Builder
RandomStringGenerator.Builder. filteredBy(CharacterPredicate... predicates)
Limits the characters in the generated string to those that match at least one of the predicates supplied.Constructor parameters in org.apache.commons.text with type arguments of type CharacterPredicate Constructor Description RandomStringGenerator(int minimumCodePoint, int maximumCodePoint, java.util.Set<CharacterPredicate> inclusivePredicates, TextRandomProvider random, java.util.List<java.lang.Character> characterList)
Constructs the generator.
-