int
value
@return the last offset of the value, or -1 if it is not inthe list.
@see #binarySearch for faster searches on sorted lists
ch
in the range from 0 to 0xFFFF (inclusive), the index (in Unicode code units) returned is the largest value k such that: is true. For other values ofthis.charAt(k) == ch
ch
, it is the largest value k such that: is true. In either case, if no such character occurs in this string, thenthis.codePointAt(k) == ch
-1
is returned. The String
is searched backwards starting at the last character.
@param ch a character (Unicode code point).
@return the index of the last occurrence of the character in thecharacter sequence represented by this object, or -1
if the character does not occur.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|