< prev index next >

jdk/src/java.base/share/classes/java/lang/Long.java

Print this page

        

*** 745,755 **** * @throws NumberFormatException if the {@code CharSequence} does not * contain a parsable {@code int} in the specified * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. ! * @since 1.9 */ public static long parseLong(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { s = Objects.requireNonNull(s); --- 745,755 ---- * @throws NumberFormatException if the {@code CharSequence} does not * contain a parsable {@code int} in the specified * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. ! * @since 9 */ public static long parseLong(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { s = Objects.requireNonNull(s);
*** 991,1001 **** * @throws NumberFormatException if the {@code CharSequence} does not * contain a parsable unsigned {@code long} in the specified * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. ! * @since 1.9 */ public static long parseUnsignedLong(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { s = Objects.requireNonNull(s); --- 991,1001 ---- * @throws NumberFormatException if the {@code CharSequence} does not * contain a parsable unsigned {@code long} in the specified * {@code radix}, or if {@code radix} is either smaller than * {@link java.lang.Character#MIN_RADIX} or larger than * {@link java.lang.Character#MAX_RADIX}. ! * @since 9 */ public static long parseUnsignedLong(CharSequence s, int beginIndex, int endIndex, int radix) throws NumberFormatException { s = Objects.requireNonNull(s);
< prev index next >