Enum Class OptionStability

java.lang.Object
java.lang.Enum<OptionStability>
org.graalvm.options.OptionStability
All Implemented Interfaces:
Serializable, Comparable<OptionStability>, Constable

public enum OptionStability extends Enum<OptionStability>
Categorizes options according to their stability.
Since:
19.0
  • Enum Constant Details

    • STABLE

      public static final OptionStability STABLE
      A stable option is expected to remain available for many releases. End users can rely on such an option being present. A stable option can still be removed but will go through a clear deprecating process before being removed.
      Since:
      19.0
    • EXPERIMENTAL

      public static final OptionStability EXPERIMENTAL
      An experimental option has no guarantees of stability and might be removed at any point.
      Since:
      19.0
  • Method Details

    • values

      public static OptionStability[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OptionStability valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null