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

Print this page

        

*** 825,834 **** --- 825,836 ---- * {@code getLong(nm, null)} * </blockquote> * * @param nm property name. * @return the {@code Long} value of the property. + * @throws SecurityException for the same reasons as + * {@link System#getProperty(String) System.getProperty} * @see java.lang.System#getProperty(java.lang.String) * @see java.lang.System#getProperty(java.lang.String, java.lang.String) */ public static Long getLong(String nm) { return getLong(nm, null);
*** 868,877 **** --- 870,881 ---- * the default value is not needed. * * @param nm property name. * @param val default value. * @return the {@code Long} value of the property. + * @throws SecurityException for the same reasons as + * {@link System#getProperty(String) System.getProperty} * @see java.lang.System#getProperty(java.lang.String) * @see java.lang.System#getProperty(java.lang.String, java.lang.String) */ public static Long getLong(String nm, long val) { Long result = Long.getLong(nm, null);
*** 915,924 **** --- 919,930 ---- * specified name is empty or {@code null}. * * @param nm property name. * @param val default value. * @return the {@code Long} value of the property. + * @throws SecurityException for the same reasons as + * {@link System#getProperty(String) System.getProperty} * @see System#getProperty(java.lang.String) * @see System#getProperty(java.lang.String, java.lang.String) */ public static Long getLong(String nm, Long val) { String v = null;