Record Class LastOpenedDTO
java.lang.Object
java.lang.Record
org.graylog.plugins.views.startpage.lastOpened.LastOpenedDTO
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLastOpenedDTO(GRN grn, org.joda.time.DateTime timestamp) Creates an instance of aLastOpenedDTOrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.grn()Returns the value of thegrnrecord component.final inthashCode()Returns a hash code value for this object.org.joda.time.DateTimeReturns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
FIELD_GRN
- See Also:
-
FIELD_TIMESTAMP
- See Also:
-
-
Constructor Details
-
LastOpenedDTO
Creates an instance of aLastOpenedDTOrecord class.- Parameters:
grn- the value for thegrnrecord componenttimestamp- the value for thetimestamprecord 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). -
grn
Returns the value of thegrnrecord component.- Returns:
- the value of the
grnrecord component
-
timestamp
public org.joda.time.DateTime timestamp()Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-