Uses of Class
io.helidon.common.http.CharMatcher
Packages that use CharMatcher
Package
Description
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 CharMatcherModifier and TypeMethodDescriptionCharMatcher.and(CharMatcher other) Returns a matcher that matches any character matched by both this matcher andother.static CharMatcherCharMatcher.any()Matches any character.static CharMatcherCharMatcher.anyOf(CharSequence sequence) Returns acharmatcher that matches any character present in the given character sequence.static CharMatcherCharMatcher.ascii()Determines whether a character is ASCII, meaning that its code point is less than 128.static CharMatcherCharMatcher.is(char match) Returns acharmatcher that matches only one specified character.static CharMatcherCharMatcher.isNot(char match) Returns acharmatcher that matches any character except the one specified.static CharMatcherCharMatcher.javaIsoControl()Determines whether a character is an ISO control character as specified byCharacter.isISOControl(char).CharMatcher.negate()Returns a matcher that matches any character not matched by this matcher.static CharMatcherCharMatcher.none()Matches no character.static CharMatcherCharMatcher.noneOf(CharSequence sequence) Returns acharmatcher that matches any character not present in the given character sequence.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 CharMatcherModifier and TypeMethodDescriptionCharMatcher.and(CharMatcher other) Returns a matcher that matches any character matched by both this matcher andother.charTokenizer.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.Tokenizer.consumeToken(CharMatcher matcher) Get the token represented by the specified matcher and advance the position the to next character.Tokenizer.consumeTokenIfPresent(CharMatcher matcher) Get the token represented by the specified matcher and advance the position the to next character if matched.static StringTokenizer.normalize(CharMatcher matcher, String token) Verify that the given token matches the specified matcher and return a lower case only token string.CharMatcher.or(CharMatcher other) Returns a matcher that matches any character matched by either this matcher orother.