src/java.base/share/classes/java/lang/Runtime.java
changeset 49508 8f041818aca9
parent 49203 3a225d9cabe1
child 52427 3c6aa484536c
equal deleted inserted replaced
49507:de0fd2c8a401 49508:8f041818aca9
  1138          *
  1138          *
  1139          * @deprecated As of Java SE 10, the first element of a version
  1139          * @deprecated As of Java SE 10, the first element of a version
  1140          * number is not the major-release number but the feature-release
  1140          * number is not the major-release number but the feature-release
  1141          * counter, incremented for every time-based release.  Use the {@link
  1141          * counter, incremented for every time-based release.  Use the {@link
  1142          * #feature()} method in preference to this method.  For compatibility,
  1142          * #feature()} method in preference to this method.  For compatibility,
  1143          * this method returns the value of the <a href="FEATURE">feature</a>
  1143          * this method returns the value of the <a href="#FEATURE">feature</a>
  1144          * element.
  1144          * element.
  1145          *
  1145          *
  1146          * @return The value of the feature element
  1146          * @return The value of the feature element
  1147          */
  1147          */
  1148         @Deprecated(since = "10")
  1148         @Deprecated(since = "10")
  1156          *
  1156          *
  1157          * @deprecated As of Java&nbsp;SE 10, the second element of a version
  1157          * @deprecated As of Java&nbsp;SE 10, the second element of a version
  1158          * number is not the minor-release number but the interim-release
  1158          * number is not the minor-release number but the interim-release
  1159          * counter, incremented for every interim release.  Use the {@link
  1159          * counter, incremented for every interim release.  Use the {@link
  1160          * #interim()} method in preference to this method.  For compatibility,
  1160          * #interim()} method in preference to this method.  For compatibility,
  1161          * this method returns the value of the <a href="INTERIM">interim</a>
  1161          * this method returns the value of the <a href="#INTERIM">interim</a>
  1162          * element, or zero if it is absent.
  1162          * element, or zero if it is absent.
  1163          *
  1163          *
  1164          * @return The value of the interim element, or zero
  1164          * @return The value of the interim element, or zero
  1165          */
  1165          */
  1166         @Deprecated(since = "10")
  1166         @Deprecated(since = "10")
  1174          *
  1174          *
  1175          * @deprecated As of Java&nbsp;SE 10, the third element of a version
  1175          * @deprecated As of Java&nbsp;SE 10, the third element of a version
  1176          * number is not the security level but the update-release counter,
  1176          * number is not the security level but the update-release counter,
  1177          * incremented for every update release.  Use the {@link #update()}
  1177          * incremented for every update release.  Use the {@link #update()}
  1178          * method in preference to this method.  For compatibility, this method
  1178          * method in preference to this method.  For compatibility, this method
  1179          * returns the value of the <a href="UPDATE">update</a> element, or
  1179          * returns the value of the <a href="#UPDATE">update</a> element, or
  1180          * zero if it is absent.
  1180          * zero if it is absent.
  1181          *
  1181          *
  1182          * @return  The value of the update element, or zero
  1182          * @return  The value of the update element, or zero
  1183          */
  1183          */
  1184         @Deprecated(since = "10")
  1184         @Deprecated(since = "10")
  1186             return update();
  1186             return update();
  1187         }
  1187         }
  1188 
  1188 
  1189         /**
  1189         /**
  1190          * Returns an unmodifiable {@link java.util.List List} of the integers
  1190          * Returns an unmodifiable {@link java.util.List List} of the integers
  1191          * represented in the <a href="#verNum">version number</a>.  The {@code
  1191          * represented in the <a href="#verNum">version number</a>.
  1192          * List} always contains at least one element corresponding to the <a
  1192          * The {@code List} always contains at least one element corresponding to
  1193          * href="#feature">feature version number</a>.
  1193          * the <a href="#FEATURE">feature version number</a>.
  1194          *
  1194          *
  1195          * @return  An unmodifiable list of the integers
  1195          * @return  An unmodifiable list of the integers
  1196          *          represented in the version number
  1196          *          represented in the version number
  1197          */
  1197          */
  1198         public List<Integer> version() {
  1198         public List<Integer> version() {