Record Class SmsCampaignTimeLine
java.lang.Object
java.lang.Record
org.apache.fineract.infrastructure.campaigns.sms.data.SmsCampaignTimeLine
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactivatedByUsernamerecord component.Returns the value of theactivatedOnDaterecord component.Returns the value of theclosedByUsernamerecord component.Returns the value of theclosedOnDaterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesubmittedByUsernamerecord component.Returns the value of thesubmittedOnDaterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SmsCampaignTimeLine
public SmsCampaignTimeLine(LocalDate submittedOnDate, String submittedByUsername, LocalDate activatedOnDate, String activatedByUsername, LocalDate closedOnDate, String closedByUsername) Creates an instance of aSmsCampaignTimeLinerecord class.- Parameters:
submittedOnDate- the value for thesubmittedOnDaterecord componentsubmittedByUsername- the value for thesubmittedByUsernamerecord componentactivatedOnDate- the value for theactivatedOnDaterecord componentactivatedByUsername- the value for theactivatedByUsernamerecord componentclosedOnDate- the value for theclosedOnDaterecord componentclosedByUsername- the value for theclosedByUsernamerecord 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). -
submittedOnDate
Returns the value of thesubmittedOnDaterecord component.- Returns:
- the value of the
submittedOnDaterecord component
-
submittedByUsername
Returns the value of thesubmittedByUsernamerecord component.- Returns:
- the value of the
submittedByUsernamerecord component
-
activatedOnDate
Returns the value of theactivatedOnDaterecord component.- Returns:
- the value of the
activatedOnDaterecord component
-
activatedByUsername
Returns the value of theactivatedByUsernamerecord component.- Returns:
- the value of the
activatedByUsernamerecord component
-
closedOnDate
Returns the value of theclosedOnDaterecord component.- Returns:
- the value of the
closedOnDaterecord component
-
closedByUsername
Returns the value of theclosedByUsernamerecord component.- Returns:
- the value of the
closedByUsernamerecord component
-