mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
f8ea506021
Offer support for toOctalString and toBinaryString in Integer and Long.
105 lines
2.2 KiB
Java
105 lines
2.2 KiB
Java
/* Copyright (c) 2008, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package java.lang;
|
|
|
|
public final class Integer extends Number implements Comparable<Integer> {
|
|
public static final Class TYPE = Class.forCanonicalName("I");
|
|
|
|
public static final int MIN_VALUE = 0x80000000;
|
|
public static final int MAX_VALUE = 0x7FFFFFFF;
|
|
|
|
private final int value;
|
|
|
|
public Integer(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public Integer(String s) {
|
|
this.value = parseInt(s);
|
|
}
|
|
|
|
public static Integer valueOf(int value) {
|
|
return new Integer(value);
|
|
}
|
|
|
|
public static Integer valueOf(String value) {
|
|
return valueOf(parseInt(value));
|
|
}
|
|
|
|
public boolean equals(Object o) {
|
|
return o instanceof Integer && ((Integer) o).value == value;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return value;
|
|
}
|
|
|
|
public int compareTo(Integer other) {
|
|
return value - other.value;
|
|
}
|
|
|
|
public String toString() {
|
|
return toString(value);
|
|
}
|
|
|
|
public static String toString(int v, int radix) {
|
|
return Long.toString(v, radix);
|
|
}
|
|
|
|
public static String toString(int v) {
|
|
return toString(v, 10);
|
|
}
|
|
|
|
public static String toHexString(int v) {
|
|
return Long.toString(((long) v) & 0xFFFFFFFFL, 16);
|
|
}
|
|
|
|
public static String toOctalString(int v) {
|
|
return Long.toString(((long) v) & 0xFFFFFFFFL, 8);
|
|
}
|
|
|
|
public static String toBinaryString(int v) {
|
|
return Long.toString(((long) v) & 0xFFFFFFFFL, 2);
|
|
}
|
|
|
|
public byte byteValue() {
|
|
return (byte) value;
|
|
}
|
|
|
|
public short shortValue() {
|
|
return (short) value;
|
|
}
|
|
|
|
public int intValue() {
|
|
return value;
|
|
}
|
|
|
|
public long longValue() {
|
|
return value;
|
|
}
|
|
|
|
public float floatValue() {
|
|
return (float) value;
|
|
}
|
|
|
|
public double doubleValue() {
|
|
return (double) value;
|
|
}
|
|
|
|
public static int parseInt(String s) {
|
|
return parseInt(s, 10);
|
|
}
|
|
|
|
public static int parseInt(String s, int radix) {
|
|
return (int) Long.parseLong(s, radix);
|
|
}
|
|
}
|