Package app.ductape.sdk.database.types
Record Class ActionTypes.ActionUpdateOptions
java.lang.Object
java.lang.Record
app.ductape.sdk.database.types.ActionTypes.ActionUpdateOptions
- Enclosing class:
- ActionTypes
-
Constructor Summary
ConstructorsConstructorDescriptionActionUpdateOptions(String tag, String name, String description, ActionTypes.ActionTemplate template, Map<String, Object> filterTemplate) Creates an instance of aActionUpdateOptionsrecord 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.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
-
ActionUpdateOptions
public ActionUpdateOptions(String tag, String name, String description, ActionTypes.ActionTemplate template, Map<String, Object> filterTemplate) Creates an instance of aActionUpdateOptionsrecord class.- Parameters:
tag- the value for thetagrecord componentname- the value for thenamerecord 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). -
tag
Returns the value of thetagrecord component.- Returns:
- the value of the
tagrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord 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
-