Enum AgreementType

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

public enum AgreementType extends Enum<AgreementType>
The agreement type.
  • Enum Constant Details

    • NOT_SPECIFIED

      public static final AgreementType NOT_SPECIFIED
      Enum value NotSpecified.
    • AS2

      public static final AgreementType AS2
      Enum value AS2.
    • X12

      public static final AgreementType X12
      Enum value X12.
    • EDIFACT

      public static final AgreementType EDIFACT
      Enum value Edifact.
  • Method Details

    • values

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

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