Enum ExecuteUpdateResultCheckStyle

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ExecuteUpdateResultCheckStyle>

    public enum ExecuteUpdateResultCheckStyle
    extends java.lang.Enum<ExecuteUpdateResultCheckStyle>
    For persistence operations (INSERT, UPDATE, DELETE) what style of determining results (success/failure) is to be used.
    • Enum Constant Detail

      • NONE

        public static final ExecuteUpdateResultCheckStyle NONE
        Do not perform checking. Either user simply does not want checking, or is indicating a CallableStatement execution in which the checks are being performed explicitly and failures are handled through propagation of SQLExceptions.
      • COUNT

        public static final ExecuteUpdateResultCheckStyle COUNT
        Perform row-count checking. Row counts are the int values returned by both PreparedStatement.executeUpdate() and Statement.executeBatch(). These values are checked against some expected count.
      • PARAM

        public static final ExecuteUpdateResultCheckStyle PARAM
        Essentially the same as COUNT except that the row count actually comes from an output parameter registered as part of a CallableStatement. This style explicitly prohibits statement batching from being used...
    • Method Detail

      • values

        public static ExecuteUpdateResultCheckStyle[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ExecuteUpdateResultCheckStyle c : ExecuteUpdateResultCheckStyle.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ExecuteUpdateResultCheckStyle valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • externalName

        public java.lang.String externalName()