Module org.elasticsearch.server
Package org.elasticsearch.common
Record Class Strings.TruncatedString
java.lang.Object
java.lang.Record
org.elasticsearch.common.Strings.TruncatedString
- Record Components:
string- The string value.truncated-trueif the string was truncated,falseotherwise.
- Enclosing class:
Strings
A small value class that represents a
String that might be truncated.-
Constructor Summary
ConstructorsConstructorDescriptionTruncatedString(String string, boolean truncated) Creates an instance of aTruncatedStringrecord class. -
Method Summary
Modifier and TypeMethodDescriptionappendIfTruncated(String suffix) Appends a givensuffixand returns the result if the value ifstringwas truncated; or the unchangedstringotherwise.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.string()Returns the value of thestringrecord component.final StringtoString()Returns a string representation of this record class.booleanReturns the value of thetruncatedrecord component.
-
Constructor Details
-
Method Details
-
appendIfTruncated
Appends a givensuffixand returns the result if the value ifstringwas truncated; or the unchangedstringotherwise.- Parameters:
suffix- Suffix to append.
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
string
Returns the value of thestringrecord component.- Returns:
- the value of the
stringrecord component
-
truncated
public boolean truncated()Returns the value of thetruncatedrecord component.- Returns:
- the value of the
truncatedrecord component
-