Record Class ComboCaseCodes
java.lang.Object
java.lang.Record
edu.suffolk.litlab.efsp.tyler.ecfcodes.ComboCaseCodes
public record ComboCaseCodes(CaseCategory cat, CaseType type, List<FilingCode> filings, Map<PartyId,PartyInfo> partyInfo)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionComboCaseCodes(CaseCategory cat, CaseType type, List<FilingCode> filings, Map<PartyId, PartyInfo> partyInfo) Creates an instance of aComboCaseCodesrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncat()Returns the value of thecatrecord component.final booleanIndicates whether some other object is "equal to" this one.filings()Returns the value of thefilingsrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thepartyInforecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
ComboCaseCodes
public ComboCaseCodes() -
ComboCaseCodes
public ComboCaseCodes(CaseCategory cat, CaseType type, List<FilingCode> filings, Map<PartyId, PartyInfo> partyInfo) Creates an instance of aComboCaseCodesrecord class.- Parameters:
cat- the value for thecatrecord componenttype- the value for thetyperecord componentfilings- the value for thefilingsrecord componentpartyInfo- the value for thepartyInforecord 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). -
cat
Returns the value of thecatrecord component.- Returns:
- the value of the
catrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
filings
Returns the value of thefilingsrecord component.- Returns:
- the value of the
filingsrecord component
-
partyInfo
Returns the value of thepartyInforecord component.- Returns:
- the value of the
partyInforecord component
-