Uses of Class
org.apache.commons.lang3.CharRange
-
Packages that use CharRange Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.langclasses. -
-
Uses of CharRange in org.apache.commons.lang3
Fields in org.apache.commons.lang3 declared as CharRange Modifier and Type Field Description (package private) static CharRange[]CharRange. EMPTY_ARRAYEmpty array.private CharRangeCharRange.CharacterIterator. rangeFields in org.apache.commons.lang3 with type parameters of type CharRange Modifier and Type Field Description private java.util.Set<CharRange>CharSet. setThe set of CharRange objects.Methods in org.apache.commons.lang3 that return CharRange Modifier and Type Method Description (package private) CharRange[]CharSet. getCharRanges()Gets the internal set as an array of CharRange objects.static CharRangeCharRange. is(char ch)Constructs aCharRangeover a single character.static CharRangeCharRange. isIn(char start, char end)Constructs aCharRangeover a set of characters.static CharRangeCharRange. isNot(char ch)Constructs a negatedCharRangeover a single character.static CharRangeCharRange. isNotIn(char start, char end)Constructs a negatedCharRangeover a set of characters.Methods in org.apache.commons.lang3 with parameters of type CharRange Modifier and Type Method Description booleanCharRange. contains(CharRange range)Are all the characters of the passed in range contained in this range.Constructors in org.apache.commons.lang3 with parameters of type CharRange Constructor Description CharacterIterator(CharRange r)Constructs a new iterator for the character range.
-