Enum Class OP

java.lang.Object
java.lang.Enum<OP>
com.landawn.abacus.jdbc.dao.OP
All Implemented Interfaces:
Serializable, Comparable<OP>, Constable

public enum OP extends Enum<OP>
See Also:
  • operations in AbstractPreparedQuery
  • Enum Constant Details

    • exists

      public static final OP exists
    • findOnlyOne

      public static final OP findOnlyOne
    • findFirst

      public static final OP findFirst
    • list

      public static final OP list
    • query

      public static final OP query
      Deprecated.
      generally it's unnecessary to specify the "op = OP.query" in Select/NamedSelect.
    • stream

      public static final OP stream
      Deprecated.
      generally it's unnecessary to specify the "op = OP.stream" in Select/NamedSelect.
    • queryForSingle

      public static final OP queryForSingle
    • queryForUnique

      public static final OP queryForUnique
    • listAll

      public static final OP listAll
      Mostly it's for @Call to retrieve all the ResultSets returned from the executed procedure by listAll/listAllAndGetOutParameters.
    • queryAll

      public static final OP queryAll
      Mostly it's for @Call to retrieve all the ResultSets returned from the executed procedure by queryAll/queryAllAndGetOutParameters.
    • streamAll

      public static final OP streamAll
      Mostly it's for @Call to retrieve all the ResultSets returned from the executed procedure by streamAll.
    • executeAndGetOutParameters

      public static final OP executeAndGetOutParameters
      Mostly it's for @Call to execute the target procedure and get out parameters by executeAndGetOutParameters.
    • update

      public static final OP update
    • largeUpdate

      public static final OP largeUpdate
    • DEFAULT

      public static final OP DEFAULT
  • Method Details

    • values

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