Module org.elasticsearch.xcore
Record Class AbstractAuditor.IndexDetails
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.core.common.notifications.AbstractAuditor.IndexDetails
- Enclosing class:
AbstractAuditor<T extends AbstractAuditMessage>
-
Constructor Summary
ConstructorsConstructorDescriptionIndexDetails(String indexPrefix, String indexVersion) Creates an instance of aIndexDetailsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theindexPrefixrecord component.Returns the value of theindexVersionrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IndexDetails
Creates an instance of aIndexDetailsrecord class.- Parameters:
indexPrefix- the value for theindexPrefixrecord componentindexVersion- the value for theindexVersionrecord 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). -
indexPrefix
Returns the value of theindexPrefixrecord component.- Returns:
- the value of the
indexPrefixrecord component
-
indexVersion
Returns the value of theindexVersionrecord component.- Returns:
- the value of the
indexVersionrecord component
-