Record Class PutComponentTemplateRequest
java.lang.Object
java.lang.Record
org.springframework.data.elasticsearch.core.index.PutComponentTemplateRequest
public record PutComponentTemplateRequest(String name, Long version, Boolean create, Duration masterTimeout, ComponentTemplateRequestData template)
extends Record
- Since:
- 5.1
- Author:
- Peter-Josef Meisch
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionPutComponentTemplateRequest
(String name, Long version, Boolean create, Duration masterTimeout, ComponentTemplateRequestData template) Creates an instance of aPutComponentTemplateRequest
record class. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
create()
Returns the value of thecreate
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of themasterTimeout
record component.name()
Returns the value of thename
record component.template()
Returns the value of thetemplate
record component.final String
toString()
Returns a string representation of this record class.version()
Returns the value of theversion
record component.
-
Constructor Details
-
PutComponentTemplateRequest
public PutComponentTemplateRequest(String name, @Nullable Long version, @Nullable Boolean create, @Nullable Duration masterTimeout, ComponentTemplateRequestData template) Creates an instance of aPutComponentTemplateRequest
record class.- Parameters:
name
- the value for thename
record componentversion
- the value for theversion
record componentcreate
- the value for thecreate
record componentmasterTimeout
- the value for themasterTimeout
record componenttemplate
- the value for thetemplate
record 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)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
version
Returns the value of theversion
record component.- Returns:
- the value of the
version
record component
-
create
Returns the value of thecreate
record component.- Returns:
- the value of the
create
record component
-
masterTimeout
Returns the value of themasterTimeout
record component.- Returns:
- the value of the
masterTimeout
record component
-
template
Returns the value of thetemplate
record component.- Returns:
- the value of the
template
record component
-