Package org.graylog2.utilities.date
Record Class MultiFormatDateParser
java.lang.Object
java.lang.Record
org.graylog2.utilities.date.MultiFormatDateParser
-
Constructor Summary
ConstructorsConstructorDescriptionMultiFormatDateParser(List<org.joda.time.format.DateTimeFormatter> dateTimeFormatters) Creates an instance of aMultiFormatDateParserrecord class. -
Method Summary
Modifier and TypeMethodDescriptionList<org.joda.time.format.DateTimeFormatter>Returns the value of thedateTimeFormattersrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.joda.time.DateTimefinal StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MultiFormatDateParser
Creates an instance of aMultiFormatDateParserrecord class.- Parameters:
dateTimeFormatters- the value for thedateTimeFormattersrecord component
-
MultiFormatDateParser
public MultiFormatDateParser()
-
-
Method Details
-
parseDate
-
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). -
dateTimeFormatters
Returns the value of thedateTimeFormattersrecord component.- Returns:
- the value of the
dateTimeFormattersrecord component
-