src/share/classes/java/lang/Integer.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

*** 45,55 **** * * @author Lee Boynton * @author Arthur van Hoff * @author Josh Bloch * @author Joseph D. Darcy ! * @since JDK1.0 */ public final class Integer extends Number implements Comparable<Integer> { /** * A constant holding the minimum value an {@code int} can * have, -2<sup>31</sup>. --- 45,55 ---- * * @author Lee Boynton * @author Arthur van Hoff * @author Josh Bloch * @author Joseph D. Darcy ! * @since 1.0 */ public final class Integer extends Number implements Comparable<Integer> { /** * A constant holding the minimum value an {@code int} can * have, -2<sup>31</sup>.
*** 64,74 **** /** * The {@code Class} instance representing the primitive type * {@code int}. * ! * @since JDK1.1 */ @SuppressWarnings("unchecked") public static final Class<Integer> TYPE = (Class<Integer>) Class.getPrimitiveClass("int"); /** --- 64,74 ---- /** * The {@code Class} instance representing the primitive type * {@code int}. * ! * @since 1.1 */ @SuppressWarnings("unchecked") public static final Class<Integer> TYPE = (Class<Integer>) Class.getPrimitiveClass("int"); /**
*** 225,235 **** * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in hexadecimal (base&nbsp;16). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since JDK1.0.2 */ public static String toHexString(int i) { return toUnsignedString0(i, 4); } --- 225,235 ---- * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in hexadecimal (base&nbsp;16). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since 1.0.2 */ public static String toHexString(int i) { return toUnsignedString0(i, 4); }
*** 263,273 **** * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in octal (base&nbsp;8). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since JDK1.0.2 */ public static String toOctalString(int i) { return toUnsignedString0(i, 3); } --- 263,273 ---- * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in octal (base&nbsp;8). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since 1.0.2 */ public static String toOctalString(int i) { return toUnsignedString0(i, 3); }
*** 295,305 **** * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in binary (base&nbsp;2). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since JDK1.0.2 */ public static String toBinaryString(int i) { return toUnsignedString0(i, 1); } --- 295,305 ---- * @param i an integer to be converted to a string. * @return the string representation of the unsigned integer value * represented by the argument in binary (base&nbsp;2). * @see #parseUnsignedInt(String, int) * @see #toUnsignedString(int, int) ! * @since 1.0.2 */ public static String toBinaryString(int i) { return toUnsignedString0(i, 1); }