CharSequencespublic class CharSequences extends Object {@link CharSequence} utility methods. |
Methods Summary |
---|
public static int | compareToIgnoreCase(java.lang.CharSequence me, java.lang.CharSequence another)Compares two character sequences with API like {@link Comparable#compareTo}.
// Code adapted from String#compareTo
int myLen = me.length(), anotherLen = another.length();
int myPos = 0, anotherPos = 0, result;
int end = (myLen < anotherLen) ? myLen : anotherLen;
while (myPos < end) {
if ((result = Character.toLowerCase(me.charAt(myPos++))
- Character.toLowerCase(another.charAt(anotherPos++))) != 0) {
return result;
}
}
return myLen - anotherLen;
| public static boolean | equals(java.lang.CharSequence a, java.lang.CharSequence b)Compares two character sequences for equality.
if (a.length() != b.length()) {
return false;
}
int length = a.length();
for (int i = 0; i < length; i++) {
if (a.charAt(i) != b.charAt(i)) {
return false;
}
}
return true;
| public static java.lang.CharSequence | forAsciiBytes(byte[] bytes)Adapts {@link CharSequence} to an array of ASCII (7-bits per character)
bytes.
return new CharSequence() {
public char charAt(int index) {
return (char) bytes[index];
}
public int length() {
return bytes.length;
}
public CharSequence subSequence(int start, int end) {
return forAsciiBytes(bytes, start, end);
}
public String toString() {
return new String(bytes);
}
};
| public static java.lang.CharSequence | forAsciiBytes(byte[] bytes, int start, int end)Adapts {@link CharSequence} to an array of ASCII (7-bits per character)
bytes.
validate(start, end, bytes.length);
return new CharSequence() {
public char charAt(int index) {
return (char) bytes[index + start];
}
public int length() {
return end - start;
}
public CharSequence subSequence(int newStart, int newEnd) {
newStart -= start;
newEnd -= start;
validate(newStart, newEnd, length());
return forAsciiBytes(bytes, newStart, newEnd);
}
public String toString() {
return new String(bytes, start, length());
}
};
| static void | validate(int start, int end, int length)
if (start < 0) throw new IndexOutOfBoundsException();
if (end < 0) throw new IndexOutOfBoundsException();
if (end > length) throw new IndexOutOfBoundsException();
if (start > end) throw new IndexOutOfBoundsException();
|
|