java.lang.Object
java.lang.Enum<Operation>
org.qubership.atp.auth.springbootstarter.entities.Operation
All Implemented Interfaces:
Serializable, Comparable<Operation>, java.lang.constant.Constable

public enum Operation extends Enum<Operation>
  • Enum Constant Details

    • CREATE

      public static final Operation CREATE
      Operation: create an object.
    • READ

      public static final Operation READ
      Operation: read an object.
    • UPDATE

      public static final Operation UPDATE
      Operation: update an object.
    • DELETE

      public static final Operation DELETE
      Operation: delete an object.
    • EXECUTE

      public static final Operation EXECUTE
      Operation: execute an object.
    • LOCK

      public static final Operation LOCK
      Operation: lock an object.
    • UNLOCK

      public static final Operation UNLOCK
      Operation: unlock an object.
  • Method Details

    • values

      public static Operation[] 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 Operation 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
    • toString

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