@Deprecated public class CharSequences extends Object
Modifier and Type | Method and Description |
---|---|
int |
codePointLength(CharSequence s)
Deprecated.
This API is ICU internal only.
|
static int[] |
codePoints(CharSequence s)
Deprecated.
This API is ICU internal only.
|
static int |
compare(CharSequence a,
CharSequence b)
Deprecated.
This API is ICU internal only.
|
static int |
compare(CharSequence string,
int codePoint)
Deprecated.
This API is ICU internal only.
|
static int |
compare(int codepoint,
CharSequence a)
Deprecated.
This API is ICU internal only.
|
static boolean |
equals(CharSequence other,
int codepoint)
Deprecated.
This API is ICU internal only.
|
static boolean |
equals(int codepoint,
CharSequence other)
Deprecated.
This API is ICU internal only.
|
static <T> boolean |
equals(T a,
T b)
Deprecated.
This API is ICU internal only.
|
static boolean |
equalsChars(CharSequence a,
CharSequence b)
Deprecated.
This API is ICU internal only.
|
static int |
getSingleCodePoint(CharSequence s)
Deprecated.
This API is ICU internal only.
|
static int |
indexOf(CharSequence s,
int codePoint)
Deprecated.
This API is ICU internal only.
|
static int |
matchAfter(CharSequence a,
CharSequence b,
int aIndex,
int bIndex)
Deprecated.
This API is ICU internal only.
|
static boolean |
onCharacterBoundary(CharSequence s,
int i)
Deprecated.
This API is ICU internal only.
|
@Deprecated public static int matchAfter(CharSequence a, CharSequence b, int aIndex, int bIndex)
@Deprecated public int codePointLength(CharSequence s)
@Deprecated public static final boolean equals(int codepoint, CharSequence other)
@Deprecated public static final boolean equals(CharSequence other, int codepoint)
@Deprecated public static int compare(CharSequence string, int codePoint)
@Deprecated public static int compare(int codepoint, CharSequence a)
@Deprecated public static int getSingleCodePoint(CharSequence s)
@Deprecated public static final <T> boolean equals(T a, T b)
@Deprecated public static int compare(CharSequence a, CharSequence b)
@Deprecated public static boolean equalsChars(CharSequence a, CharSequence b)
@Deprecated public static boolean onCharacterBoundary(CharSequence s, int i)
@Deprecated public static int indexOf(CharSequence s, int codePoint)
@Deprecated public static int[] codePoints(CharSequence s)
for (int codePoint : CharSequences.codePoints(string)) { doSomethingWith(codePoint); }
Copyright © 2016 Unicode, Inc. and others.