Class NoOpStatementBuilder

java.lang.Object
org.litebridge.orm.persistence.NoOpStatementBuilder
All Implemented Interfaces:
StatementBuilder<Update>

public final class NoOpStatementBuilder extends Object implements StatementBuilder<Update>
A no-operation implementation of the StatementBuilder interface.

This class represents a placeholder or default implementation that does not provide actual functionality for building SQL statements. It is intended to signify that no statement-building operations will be performed.

Invoking the methods statementChain() or build() in this implementation will result in throwing an UnsupportedOperationException.

This class is final and cannot be extended.

See Also: