Enum Class Command

java.lang.Object
java.lang.Enum<Command>
com.verisign.epp.codec.fee.v1_0.Command
All Implemented Interfaces:
Serializable, Comparable<Command>, Constable

public enum Command extends Enum<Command>
Commands, which include the following possible values:
  • CREATE - Create command.
  • DELETE - Delete command.
  • RENEW - Renew command.
  • UPDATE - Update command.
  • TRANSFER - Transfer command.
  • RESTORE - Restore command.
  • CUSTOM - Custom command that is defined using a free-form attribute like the "customName" attribute.
  • Enum Constant Details

    • CREATE

      public static final Command CREATE
    • DELETE

      public static final Command DELETE
    • RENEW

      public static final Command RENEW
    • UPDATE

      public static final Command UPDATE
    • TRANSFER

      public static final Command TRANSFER
    • RESTORE

      public static final Command RESTORE
    • CUSTOM

      public static final Command CUSTOM
  • Method Details

    • values

      public static Command[] 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 Command 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
    • getCommand

      public static Command getCommand(String aString)
      Get the command enumerated value given the matching string.
      Parameters:
      aString - Command enumerated string to convert to an enumerated Command instance.
      Returns:
      Enumerated Command value matching the String.
      Throws:
      InvalidParameterException - If aString does not match an enumerated Command string value.
    • toString

      public String toString()
      Convert the enumerated Command value to a String.
      Overrides:
      toString in class Enum<Command>