Enum AccountKeyType

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

public enum AccountKeyType extends Enum<AccountKeyType>
The type of account key to regenerate.
  • Enum Constant Details

    • PRIMARY

      public static final AccountKeyType PRIMARY
      Enum value Primary.
    • SECONDARY

      public static final AccountKeyType SECONDARY
      Enum value Secondary.
  • Method Details

    • values

      public static AccountKeyType[] 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 AccountKeyType 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 AccountKeyType fromString(String value)
      Parses a serialized value to a AccountKeyType instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed AccountKeyType object, or null if unable to parse.
    • toString

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