public final class EmptyUnicodeString extends UnicodeString
| Modifier and Type | Method and Description |
|---|---|
int |
codePointAt(long index)
Get the code point at a given position in the string
|
IntIterator |
codePoints()
Get an iterator over the Unicode codepoints in the value.
|
int |
compareTo(UnicodeString other)
Compare this string to another using codepoint comparison
|
UnicodeString |
concat(UnicodeString other)
Concatenate another string
|
java.lang.String |
details() |
boolean |
equals(java.lang.Object o)
Test whether this UnicodeString is equal to another under the rules of the codepoint collation.
|
static EmptyUnicodeString |
getInstance() |
int |
getWidth()
Get the number of bits needed to hold all the characters in this string
|
int |
hashCode()
Compute a hashCode.
|
long |
indexOf(int code,
long from)
Get the position of the first occurrence of the specified codepoint,
starting the search at a given position in the string
|
long |
indexOf(UnicodeString other,
long from)
Get the first position, at or beyond start, where another string appears as a substring
of this string, comparing codepoints.
|
long |
indexWhere(java.util.function.IntPredicate predicate,
long from)
Get the position of the first occurrence of the specified codepoint,
starting the search at a given position in the string
|
boolean |
isEmpty()
Determine whether the string is a zero-length string.
|
long |
length()
Get the length of this string, in codepoints
|
int |
length32()
Get the length of the string, provided it is less than 2^31 characters
|
UnicodeString |
substring(long start,
long end)
Get a substring of this string (following the rules of
String.substring(int), but measuring
Unicode codepoints rather than 16-bit code units) |
java.lang.String |
toString()
Display as a string.
|
asAtomic, checkSubstringBounds, economize, estimatedLength, hasSubstring, indexOf, prefix, requireInt, substring, tidy, verifyCharacterspublic static EmptyUnicodeString getInstance()
public long length()
length in class UnicodeStringpublic int length32()
UnicodeStringlength32 in class UnicodeStringintpublic UnicodeString concat(UnicodeString other)
concat in class UnicodeStringother - the string to be appended to this onepublic UnicodeString substring(long start, long end)
String.substring(int), but measuring
Unicode codepoints rather than 16-bit code units)substring in class UnicodeStringstart - the offset of the first character to be included in the result, counting Unicode codepointsend - the offset of the first character to be excluded from the result, counting Unicode codepointspublic int codePointAt(long index)
throws java.lang.IndexOutOfBoundsException
UnicodeStringcodePointAt in class UnicodeStringindex - the given position (0-based)java.lang.IndexOutOfBoundsException - if the index is out of rangepublic long indexOf(int code,
long from)
UnicodeStringindexOf in class UnicodeStringcode - the sought codePointfrom - the position from which the search should start (0-based)public long indexOf(UnicodeString other, long from)
indexOf in class UnicodeStringother - the other (sought) stringfrom - the position (0-based) where searching is to start (counting in codepoints)public boolean isEmpty()
isEmpty in class UnicodeStringpublic int getWidth()
UnicodeStringgetWidth in class UnicodeStringpublic IntIterator codePoints()
codePoints in class UnicodeStringpublic int hashCode()
UnicodeString use compatible hash codes and the
hashing algorithm is therefore identical to that for java.lang.String. This means
that for strings containing Astral characters, the hash code needs to be computed by decomposing
an Astral character into a surrogate pair.hashCode in class UnicodeStringpublic boolean equals(java.lang.Object o)
equals in class UnicodeStringo - the value to be compared with this valuepublic int compareTo(UnicodeString other)
UnicodeStringcompareTo in interface java.lang.Comparable<UnicodeString>compareTo in class UnicodeStringother - the other stringpublic java.lang.String toString()
toString in class java.lang.Objectpublic long indexWhere(java.util.function.IntPredicate predicate,
long from)
indexWhere in class UnicodeStringpredicate - condition that the codepoint must satisfyfrom - the position from which the search should start (0-based)java.lang.UnsupportedOperationException - if the UnicodeString has not been prepared
for codePoint accesspublic java.lang.String details()
Copyright (c) 2004-2022 Saxonica Limited. All rights reserved.