Uses of Class
io.helidon.common.http.CharMatcher
-
Packages that use CharMatcher Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story. -
-
Uses of CharMatcher in io.helidon.common.http
Methods in io.helidon.common.http that return CharMatcher Modifier and Type Method Description CharMatcher
CharMatcher. and(CharMatcher other)
Returns a matcher that matches any character matched by both this matcher andother
.static CharMatcher
CharMatcher. any()
Matches any character.static CharMatcher
CharMatcher. anyOf(CharSequence sequence)
Returns achar
matcher that matches any character present in the given character sequence.static CharMatcher
CharMatcher. ascii()
Determines whether a character is ASCII, meaning that its code point is less than 128.static CharMatcher
CharMatcher. is(char match)
Returns achar
matcher that matches only one specified character.static CharMatcher
CharMatcher. isNot(char match)
Returns achar
matcher that matches any character except the one specified.static CharMatcher
CharMatcher. javaIsoControl()
Determines whether a character is an ISO control character as specified byCharacter.isISOControl(char)
.CharMatcher
CharMatcher. negate()
Returns a matcher that matches any character not matched by this matcher.static CharMatcher
CharMatcher. none()
Matches no character.static CharMatcher
CharMatcher. noneOf(CharSequence sequence)
Returns achar
matcher that matches any character not present in the given character sequence.CharMatcher
CharMatcher. or(CharMatcher other)
Returns a matcher that matches any character matched by either this matcher orother
.Methods in io.helidon.common.http with parameters of type CharMatcher Modifier and Type Method Description CharMatcher
CharMatcher. and(CharMatcher other)
Returns a matcher that matches any character matched by both this matcher andother
.char
Tokenizer. consumeCharacter(CharMatcher matcher)
Get the one character at the current position and matches it with the specified matcher, then update the position to the next character.String
Tokenizer. consumeToken(CharMatcher matcher)
Get the token represented by the specified matcher and advance the position the to next character.String
Tokenizer. consumeTokenIfPresent(CharMatcher matcher)
Get the token represented by the specified matcher and advance the position the to next character if matched.static String
Tokenizer. normalize(CharMatcher matcher, String token)
Verify that the given token matches the specified matcher and return a lower case only token string.CharMatcher
CharMatcher. or(CharMatcher other)
Returns a matcher that matches any character matched by either this matcher orother
.
-