java.lang.Object
org.litebridge.orm.persistence.NoOpStatementBuilder
- All Implemented Interfaces:
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:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Invoking this method will throw anUnsupportedOperationException.Invoking this method will throw anUnsupportedOperationException.
-
Constructor Details
-
NoOpStatementBuilder
public NoOpStatementBuilder()
-
-
Method Details
-
statementChain
Invoking this method will throw anUnsupportedOperationException.- Specified by:
statementChainin interfaceStatementBuilder<Update>- Returns:
- Not supported
- Throws:
UnsupportedOperationException- Always thrown as this operation is not supported in theNoOpStatementBuilderimplementation.
-
build
Invoking this method will throw anUnsupportedOperationException.- Specified by:
buildin interfaceStatementBuilder<Update>- Returns:
- Not supported
- Throws:
UnsupportedOperationException- Always thrown as this operation is not supported in theNoOpStatementBuilderimplementation.
-