All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jio.jdbc.BatchResult Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC2
Show newest version
package jio.jdbc;

/**
 * A sealed interface that defines the possible outcomes of a JDBC batch operation. Implementing classes represent
 * different states or results of the batch operation, such as success, partial success, or failure.
 * 

* This interface is part of a sealed hierarchy, and the implementing classes permitted by this interface are: * {@link BatchSuccess}, {@link BatchPartialSuccess}, and {@link BatchFailure}. *

*/ public sealed interface BatchResult permits BatchFailure, BatchPartialSuccess, BatchSuccess { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy