Uses of Class
org.apache.sis.util.Characters.Filter
Packages that use Characters.Filter
Package
Description
A set of helper classes for the SIS implementation.
Simple data objects and miscellaneous utilities.
-
Uses of Characters.Filter in org.apache.sis.internal.util
Methods in org.apache.sis.internal.util with parameters of type Characters.FilterModifier and TypeMethodDescriptionstatic String
Strings.toUpperCase
(String text, Characters.Filter filter, boolean all) Returns a string with the same content than the given string, but in upper case and containing only the filtered characters. -
Uses of Characters.Filter in org.apache.sis.util
Subclasses of Characters.Filter in org.apache.sis.utilModifier and TypeClassDescriptionprivate static final class
Implementation of theLETTERS_AND_DIGITS
constant.private static final class
Implementation of theUNICODE_IDENTIFIER
constant.Fields in org.apache.sis.util declared as Characters.FilterModifier and TypeFieldDescriptionstatic final Characters.Filter
Characters.Filter.LETTERS_AND_DIGITS
The subset of all characters for whichCharacter.isLetterOrDigit(int)
returnstrue
.static final Characters.Filter
Characters.Filter.UNICODE_IDENTIFIER
The subset of all characters for whichCharacter.isUnicodeIdentifierPart(int)
returnstrue
, excluding ignorable characters.Methods in org.apache.sis.util that return Characters.FilterModifier and TypeMethodDescriptionstatic Characters.Filter
Characters.Filter.forTypes
(byte... types) Returns a subset representing the union of all Unicode characters of the given types.Methods in org.apache.sis.util with parameters of type Characters.FilterModifier and TypeMethodDescriptionstatic boolean
CharSequences.equalsFiltered
(CharSequence s1, CharSequence s2, Characters.Filter filter, boolean ignoreCase) Returnstrue
if the given texts are equal, optionally ignoring case and filtered-out characters.