java.lang.Object
java.lang.Enum<ElevationToken>
com.azure.resourcemanager.securityinsights.models.ElevationToken
All Implemented Interfaces:
Serializable, Comparable<ElevationToken>, java.lang.constant.Constable

public enum ElevationToken extends Enum<ElevationToken>
The elevation token associated with the process.
  • Enum Constant Details

    • DEFAULT

      public static final ElevationToken DEFAULT
      Enum value Default.
    • FULL

      public static final ElevationToken FULL
      Enum value Full.
    • LIMITED

      public static final ElevationToken LIMITED
      Enum value Limited.
  • Method Details

    • values

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

      public static ElevationToken valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static ElevationToken fromString(String value)
      Parses a serialized value to a ElevationToken instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed ElevationToken object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ElevationToken>