Enum Class CrudOpEnum

java.lang.Object
java.lang.Enum<CrudOpEnum>
com.power4j.fist.boot.common.op.bus.CrudOpEnum
All Implemented Interfaces:
Serializable, Comparable<CrudOpEnum>, Constable

public enum CrudOpEnum extends Enum<CrudOpEnum>
Since:
1.0
Author:
CJ (power4j@outlook.com)
  • Enum Constant Details

    • CREATE

      public static final CrudOpEnum CREATE
      创建
    • UPDATE

      public static final CrudOpEnum UPDATE
      更新
    • DELETE

      public static final CrudOpEnum DELETE
      删除
  • Method Details

    • values

      public static CrudOpEnum[] 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 CrudOpEnum 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