Enum Class CredentialsConstants.CredentialsAction

java.lang.Object
java.lang.Enum<CredentialsConstants.CredentialsAction>
org.eclipse.hono.util.CredentialsConstants.CredentialsAction
All Implemented Interfaces:
Serializable, Comparable<CredentialsConstants.CredentialsAction>, Constable
Enclosing class:
CredentialsConstants

public static enum CredentialsConstants.CredentialsAction extends Enum<CredentialsConstants.CredentialsAction>
Request actions that belong to the Credentials API.
  • Enum Constant Details

  • Method Details

    • values

      public static CredentialsConstants.CredentialsAction[] 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 CredentialsConstants.CredentialsAction 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
    • from

      public static CredentialsConstants.CredentialsAction from(String subject)
      Construct a CredentialsAction from a subject.
      Parameters:
      subject - The subject from which the CredentialsAction needs to be constructed.
      Returns:
      CredentialsAction The CredentialsAction as enum, or unknown otherwise.
    • isValid

      public static boolean isValid(String subject)
      Helper method to check if a subject is a valid Credentials API action.
      Parameters:
      subject - The subject to validate.
      Returns:
      boolean Boolean.TRUE if the subject denotes a valid action, Boolean.FALSE otherwise.