Enum ExecuteUpdateResultCheckStyle

    • Enum Constant Detail

      • NONE

        public static final ExecuteUpdateResultCheckStyle NONE
        Deprecated, for removal: This API element is subject to removal in a future version.
        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.
      • PARAM

        public static final ExecuteUpdateResultCheckStyle PARAM
        Deprecated, for removal: This API element is subject to removal in a future version.
        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()
        Deprecated, for removal: This API element is subject to removal in a future version.
        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​(String name)
        Deprecated, for removal: This API element is subject to removal in a future version.
        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
      • externalName

        public String externalName()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • fromExternalName

        public static @Nullable ExecuteUpdateResultCheckStyle fromExternalName​(String name)
        Deprecated, for removal: This API element is subject to removal in a future version.
      • determineDefault

        public static ExecuteUpdateResultCheckStyle determineDefault​(@Nullable String customSql,
                                                                     boolean callable)
        Deprecated, for removal: This API element is subject to removal in a future version.
      • expectationConstructor

        public static @Nullable Supplier<? extends Expectation> expectationConstructor​(@Nullable ExecuteUpdateResultCheckStyle style)
        Deprecated, for removal: This API element is subject to removal in a future version.
      • expectationConstructor

        public Supplier<? extends Expectation> expectationConstructor()
        Deprecated, for removal: This API element is subject to removal in a future version.
      • expectationClass

        public Class<? extends Expectation> expectationClass()
        Deprecated, for removal: This API element is subject to removal in a future version.