Home | History | Annotate | Download | only in primitives

Lines Matching refs:Character

38  * already found in either {@link Character} or {@link Arrays}.
51 public static final int BYTES = Character.SIZE / Byte.SIZE;
55 * {@code ((Character) value).hashCode()}.
70 * Character#MAX_VALUE} or less than {@link Character#MIN_VALUE}
83 * {@code char} type, {@link Character#MAX_VALUE} if it is too large,
84 * or {@link Character#MIN_VALUE} if it is too small
87 if (value > Character.MAX_VALUE) {
88 return Character.MAX_VALUE;
90 if (value < Character.MIN_VALUE) {
91 return Character.MIN_VALUE;
98 * returned is the same as that of {@code ((Character) a).compareTo(b)}.
396 * Copies a collection of {@code Character} instances into a new array of
403 * @param collection a collection of {@code Character} objects
409 public static char[] toArray(Collection<Character> collection) {
418 array[i] = (Character) boxedArray[i];
430 * {@code Character} objects written to or read from it. For example, whether
437 public static List<Character> asList(char... backingArray) {
445 private static class CharArrayAsList extends AbstractList<Character>
469 @Override public Character get(int index) {
476 return (target instanceof Character)
477 && Chars.indexOf(array, (Character) target, start, end) != -1;
482 if (target instanceof Character) {
483 int i = Chars.indexOf(array, (Character) target, start, end);
493 if (target instanceof Character) {
494 int i = Chars.lastIndexOf(array, (Character) target, start, end);
502 @Override public Character set(int index, Character element) {
510 /*@Override*/ public List<Character> subList(int fromIndex, int toIndex) {