Record Class ComponentTemplateRequestData
java.lang.Object
java.lang.Record
org.springframework.data.elasticsearch.core.index.ComponentTemplateRequestData
public record ComponentTemplateRequestData(Settings settings, Document mapping, AliasActions aliasActions, Boolean allowAutoCreate)
extends Record
A component template to be used in a component template request.
- Since:
- 5.1
- Author:
- Peter-Josef Meisch
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionComponentTemplateRequestData(Settings settings, Document mapping, AliasActions aliasActions, Boolean allowAutoCreate) Creates an instance of aComponentTemplateRequestDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thealiasActionsrecord component.Returns the value of theallowAutoCreaterecord component.builder()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mapping()Returns the value of themappingrecord component.settings()Returns the value of thesettingsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ComponentTemplateRequestData
public ComponentTemplateRequestData(@Nullable Settings settings, @Nullable Document mapping, @Nullable AliasActions aliasActions, @Nullable Boolean allowAutoCreate) Creates an instance of aComponentTemplateRequestDatarecord class.- Parameters:
settings- the value for thesettingsrecord componentmapping- the value for themappingrecord componentaliasActions- the value for thealiasActionsrecord componentallowAutoCreate- the value for theallowAutoCreaterecord component
-
-
Method Details
-
builder
-
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). -
settings
Returns the value of thesettingsrecord component.- Returns:
- the value of the
settingsrecord component
-
mapping
Returns the value of themappingrecord component.- Returns:
- the value of the
mappingrecord component
-
aliasActions
Returns the value of thealiasActionsrecord component.- Returns:
- the value of the
aliasActionsrecord component
-
allowAutoCreate
Returns the value of theallowAutoCreaterecord component.- Returns:
- the value of the
allowAutoCreaterecord component
-