Package org.umlg.sqlg.strategy
Record Class SqlgSqlExecutor.DropQuery
java.lang.Object
java.lang.Record
org.umlg.sqlg.strategy.SqlgSqlExecutor.DropQuery
- Enclosing class:
 - SqlgSqlExecutor
 
public static record SqlgSqlExecutor.DropQuery(SqlgSqlExecutor.DROP_QUERY dropQuery, String leafSql, String sql, Boolean addAdditionalPartitionHasContainer)
extends Record
- 
Constructor Summary
ConstructorsConstructorDescriptionDropQuery(SqlgSqlExecutor.DROP_QUERY dropQuery, String leafSql, String sql, Boolean addAdditionalPartitionHasContainer) Creates an instance of aDropQueryrecord class. - 
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaddAdditionalPartitionHasContainerrecord component.Returns the value of thedropQueryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.leafSql()Returns the value of theleafSqlrecord component.sql()Returns the value of thesqlrecord component.final StringtoString()Returns a string representation of this record class. 
- 
Constructor Details
- 
DropQuery
public DropQuery(SqlgSqlExecutor.DROP_QUERY dropQuery, String leafSql, String sql, Boolean addAdditionalPartitionHasContainer) Creates an instance of aDropQueryrecord class.- Parameters:
 dropQuery- the value for thedropQueryrecord componentleafSql- the value for theleafSqlrecord componentsql- the value for thesqlrecord componentaddAdditionalPartitionHasContainer- the value for theaddAdditionalPartitionHasContainerrecord component
 
 - 
 - 
Method Details
- 
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. - 
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. - 
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). - 
dropQuery
Returns the value of thedropQueryrecord component.- Returns:
 - the value of the 
dropQueryrecord component 
 - 
leafSql
Returns the value of theleafSqlrecord component.- Returns:
 - the value of the 
leafSqlrecord component 
 - 
sql
Returns the value of thesqlrecord component.- Returns:
 - the value of the 
sqlrecord component 
 - 
addAdditionalPartitionHasContainer
Returns the value of theaddAdditionalPartitionHasContainerrecord component.- Returns:
 - the value of the 
addAdditionalPartitionHasContainerrecord component 
 
 -