Package app.ductape.sdk.database.types
Record Class AggregationTypes.StringAggOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.database.types.AggregationTypes.StringAggOptions
- Enclosing class:
- AggregationTypes
-
Constructor Summary
ConstructorsConstructorDescriptionStringAggOptions(String column, String separator, String orderBy, Boolean distinct) Creates an instance of aStringAggOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncolumn()Returns the value of thecolumnrecord component.distinct()Returns the value of thedistinctrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.orderBy()Returns the value of theorderByrecord component.Returns the value of theseparatorrecord component.toMap()final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
StringAggOptions
Creates an instance of aStringAggOptionsrecord class.- Parameters:
column- the value for thecolumnrecord componentseparator- the value for theseparatorrecord componentorderBy- the value for theorderByrecord componentdistinct- the value for thedistinctrecord component
-
-
Method Details
-
toMap
-
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). -
column
Returns the value of thecolumnrecord component.- Returns:
- the value of the
columnrecord component
-
separator
Returns the value of theseparatorrecord component.- Returns:
- the value of the
separatorrecord component
-
orderBy
Returns the value of theorderByrecord component.- Returns:
- the value of the
orderByrecord component
-
distinct
Returns the value of thedistinctrecord component.- Returns:
- the value of the
distinctrecord component
-