Searched defs:MAX_RADIX (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DCharacter.java123 public static final int MAX_RADIX = 36; field in class:Character
2313 * between MIN_RADIX and MAX_RADIX.
2320 * between {@link #MIN_RADIX} and {@link #MAX_RADIX}; -1 otherwise.
2329 * be between MIN_RADIX and MAX_RADIX.
2336 * {@link #MAX_RADIX} then the value of the character in the radix;
2340 if (radix < MIN_RADIX || radix > MAX_RADIX) {
2378 * {@code MAX_RADIX} inclusive; {@code digit} must not be negative and
2390 if (MIN_RADIX <= radix && radix <= MAX_RADIX) {

Completed in 68 milliseconds