UnicodeSet |
UnicodeSet.add(int c) |
Adds the specified character to this set if it is not already
present.
|
UnicodeSet |
UnicodeSet.add(int start,
int end) |
Adds the specified range to this set if it is not already
present.
|
UnicodeSet |
UnicodeSet.add(CharSequence s) |
Adds the specified multicharacter to this set if it is not already
present.
|
UnicodeSet |
UnicodeSet.add(Iterable<?> source) |
Add the contents of the collection (as strings) into this UnicodeSet.
|
UnicodeSet |
UnicodeSet.addAll(int start,
int end) |
Adds all characters in range (uses preferred naming convention).
|
UnicodeSet |
UnicodeSet.addAll(UnicodeSet c) |
Adds all of the elements in the specified set to this set if
they're not already present.
|
UnicodeSet |
UnicodeSet.addAll(CharSequence s) |
Adds each of the characters in this string to the set.
|
UnicodeSet |
UnicodeSet.addAll(Iterable<?> source) |
Add a collection (as strings) into this UnicodeSet.
|
<T extends CharSequence> UnicodeSet |
UnicodeSet.addAll(T... collection) |
|
UnicodeSet |
UnicodeSet.addBridges(UnicodeSet dontCare) |
Deprecated.
|
UnicodeSet |
UnicodeSet.applyIntPropertyValue(int prop,
int value) |
Modifies this set to contain those code points which have the
given value for the given binary or enumerated property, as
returned by UCharacter.getIntPropertyValue.
|
UnicodeSet |
UnicodeSet.applyPattern(String pattern) |
Modifies this set to represent the set specified by the given pattern.
|
UnicodeSet |
UnicodeSet.applyPattern(String pattern,
boolean ignoreWhitespace) |
Modifies this set to represent the set specified by the given pattern,
optionally ignoring whitespace.
|
UnicodeSet |
UnicodeSet.applyPattern(String pattern,
int options) |
Modifies this set to represent the set specified by the given pattern,
optionally ignoring whitespace.
|
UnicodeSet |
UnicodeSet.applyPattern(String pattern,
ParsePosition pos,
SymbolTable symbols,
int options) |
Deprecated.
|
UnicodeSet |
UnicodeSet.applyPropertyAlias(String propertyAlias,
String valueAlias) |
Modifies this set to contain those code points which have the
given value for the given property.
|
UnicodeSet |
UnicodeSet.applyPropertyAlias(String propertyAlias,
String valueAlias,
SymbolTable symbols) |
Modifies this set to contain those code points which have the
given value for the given property.
|
UnicodeSet |
UnicodeSet.clear() |
Removes all of the elements from this set.
|
UnicodeSet |
UnicodeSet.clone() |
Return a new set that is equivalent to this one.
|
UnicodeSet |
UnicodeSet.cloneAsThawed() |
Clone a thawed version of this class, according to the Freezable interface.
|
UnicodeSet |
UnicodeSet.closeOver(int attribute) |
Close this set over the given attribute.
|
UnicodeSet |
UnicodeSet.compact() |
Reallocate this objects internal structures to take up the least
possible space, without changing this object's value.
|
UnicodeSet |
UnicodeSet.complement() |
This is equivalent to
complement(MIN_VALUE, MAX_VALUE).
|
UnicodeSet |
UnicodeSet.complement(int c) |
Complements the specified character in this set.
|
UnicodeSet |
UnicodeSet.complement(int start,
int end) |
Complements the specified range in this set.
|
UnicodeSet |
UnicodeSet.complement(CharSequence s) |
Complement the specified string in this set.
|
UnicodeSet |
UnicodeSet.complementAll(UnicodeSet c) |
Complements in this set all elements contained in the specified
set.
|
UnicodeSet |
UnicodeSet.complementAll(CharSequence s) |
Complement EACH of the characters in this string.
|
UnicodeSet |
UnicodeSet.freeze() |
Freeze this class, according to the Freezable interface.
|
static UnicodeSet |
UnicodeSet.from(CharSequence s) |
Makes a set from a multicharacter string.
|
static UnicodeSet |
UnicodeSet.fromAll(CharSequence s) |
Makes a set from each of the characters in the string.
|
UnicodeSet |
SpoofChecker.getAllowedChars() |
Get a UnicodeSet for the characters permitted in an identifier.
|
UnicodeSet |
Transliterator.getFilterAsUnicodeSet(UnicodeSet externalFilter) |
Deprecated.
|
UnicodeSet |
Transliterator.getSourceSet() |
Returns the set of all characters that may be modified in the
input text by this Transliterator.
|
UnicodeSet |
Collator.getTailoredSet() |
[icu] Returns a UnicodeSet that contains all the characters and sequences tailored
in this collator.
|
UnicodeSet |
RuleBasedCollator.getTailoredSet() |
Get a UnicodeSet that contains all the characters and sequences tailored in this collator.
|
UnicodeSet |
Transliterator.getTargetSet() |
Returns the set of all characters that may be generated as
replacement text by this transliterator.
|
UnicodeSet |
UnicodeSetSpanner.getUnicodeSet() |
Returns the UnicodeSet used for processing.
|
protected UnicodeSet |
Transliterator.handleGetSourceSet() |
Framework method that returns the set of all characters that
may be modified in the input text by this Transliterator,
ignoring the effect of this object's filter.
|
UnicodeSet |
UnicodeSet.remove(int c) |
Removes the specified character from this set if it is present.
|
UnicodeSet |
UnicodeSet.remove(int start,
int end) |
Removes the specified range from this set if it is present.
|
UnicodeSet |
UnicodeSet.remove(CharSequence s) |
Removes the specified string from this set if it is present.
|
UnicodeSet |
UnicodeSet.removeAll(UnicodeSet c) |
Removes from this set all of its elements that are contained in the
specified set.
|
UnicodeSet |
UnicodeSet.removeAll(CharSequence s) |
Remove EACH of the characters in this string.
|
<T extends CharSequence> UnicodeSet |
UnicodeSet.removeAll(Iterable<T> collection) |
|
UnicodeSet |
UnicodeSet.removeAllStrings() |
Remove all strings from this UnicodeSet
|
UnicodeSet |
UnicodeSet.retain(int c) |
Retain the specified character from this set if it is present.
|
UnicodeSet |
UnicodeSet.retain(int start,
int end) |
Retain only the elements in this set that are contained in the
specified range.
|
UnicodeSet |
UnicodeSet.retain(CharSequence cs) |
Retain the specified string in this set if it is present.
|
UnicodeSet |
UnicodeSet.retainAll(UnicodeSet c) |
Retains only the elements in this set that are contained in the
specified set.
|
UnicodeSet |
UnicodeSet.retainAll(CharSequence s) |
Retains EACH of the characters in this string.
|
<T extends CharSequence> UnicodeSet |
UnicodeSet.retainAll(Iterable<T> collection) |
|
UnicodeSet |
UnicodeSet.set(int start,
int end) |
Make this object represent the range start - end.
|
UnicodeSet |
UnicodeSet.set(UnicodeSet other) |
Make this object represent the same set as other.
|