Package app.ductape.sdk.database.types
Record Class ActionTypes.ActionCreateOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.database.types.ActionTypes.ActionCreateOptions
- Enclosing class:
- ActionTypes
-
Constructor Summary
ConstructorsConstructorDescriptionActionCreateOptions(String name, String tag, String tableName, String operation, String description, ActionTypes.ActionTemplate template, Map<String, Object> filterTemplate) Creates an instance of aActionCreateOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefilterTemplaterecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.Returns the value of theoperationrecord component.Returns the value of thetableNamerecord component.tag()Returns the value of thetagrecord component.template()Returns the value of thetemplaterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ActionCreateOptions
public ActionCreateOptions(String name, String tag, String tableName, String operation, String description, ActionTypes.ActionTemplate template, Map<String, Object> filterTemplate) Creates an instance of aActionCreateOptionsrecord class.- Parameters:
name- the value for thenamerecord componenttag- the value for thetagrecord componenttableName- the value for thetableNamerecord componentoperation- the value for theoperationrecord componentdescription- the value for thedescriptionrecord componenttemplate- the value for thetemplaterecord componentfilterTemplate- the value for thefilterTemplaterecord 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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
tag
Returns the value of thetagrecord component.- Returns:
- the value of the
tagrecord component
-
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-
operation
Returns the value of theoperationrecord component.- Returns:
- the value of the
operationrecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
template
Returns the value of thetemplaterecord component.- Returns:
- the value of the
templaterecord component
-
filterTemplate
Returns the value of thefilterTemplaterecord component.- Returns:
- the value of the
filterTemplaterecord component
-