Record Class TurSECoreInfo
java.lang.Object
java.lang.Record
com.viglet.turing.solr.bean.TurSECoreInfo
public record TurSECoreInfo(String name, long numDocs, List<TurSECoreSiteUsage> usedBySites)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTurSECoreInfo(String name, long numDocs, List<TurSECoreSiteUsage> usedBySites) Creates an instance of aTurSECoreInforecord 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.name()Returns the value of thenamerecord component.longnumDocs()Returns the value of thenumDocsrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theusedBySitesrecord component.
-
Constructor Details
-
TurSECoreInfo
Creates an instance of aTurSECoreInforecord class.- Parameters:
name- the value for thenamerecord componentnumDocs- the value for thenumDocsrecord componentusedBySites- the value for theusedBySitesrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
numDocs
public long numDocs()Returns the value of thenumDocsrecord component.- Returns:
- the value of the
numDocsrecord component
-
usedBySites
Returns the value of theusedBySitesrecord component.- Returns:
- the value of the
usedBySitesrecord component
-