Record Class SubaccountHeading
java.lang.Object
java.lang.Record
page.codeberg.friedolyn.client.parser.SubaccountHeading
- Record Components:
shortName
- SeeSubaccount.getCode()
.fullName
- SeeSubaccount.getTitle()
.semester
- SeeSubaccount.getSemester()
.status
- Probably alwaysPrüfung vorhanden
(EXAM_AVAILABLE
).ects
- SeeSubaccount.getECTS()
.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final int
The field for theects
record component.private final @NonNull String
The field for thefullName
record component.private final @NonNull String
The field for thesemester
record component.private final @NonNull String
The field for theshortName
record component.private final @NonNull String
The field for thestatus
record component. -
Constructor Summary
ConstructorsConstructorDescriptionSubaccountHeading
(@NonNull String shortName, @NonNull String fullName, @NonNull String semester, @NonNull String status, int ects) Creates an instance of aSubaccountHeading
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
ects()
Returns the value of theects
record component.final boolean
Indicates whether some other object is "equal to" this one.@NonNull String
fullName()
Returns the value of thefullName
record component.final int
hashCode()
Returns a hash code value for this object.@NonNull String
semester()
Returns the value of thesemester
record component.@NonNull String
Returns the value of theshortName
record component.@NonNull String
status()
Returns the value of thestatus
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
shortName
-
fullName
-
semester
-
status
-
ects
private final int ectsThe field for theects
record component.
-
-
Constructor Details
-
SubaccountHeading
-
-
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 '=='. -
shortName
-
fullName
-
semester
-
status
-
ects
-