Package dev.mccue.datastructures
Record Class LinkedList.NotEmpty<T>
java.lang.Object
java.lang.Record
dev.mccue.datastructures.LinkedList.NotEmpty<T>
- All Implemented Interfaces:
LinkedList<T>
- Enclosing interface:
LinkedList<T>
public static record LinkedList.NotEmpty<T>(T first, LinkedList<T> rest)
extends Record
implements LinkedList<T>
A not empty list.
-
Nested Class Summary
Nested classes/interfaces inherited from interface dev.mccue.datastructures.LinkedList
LinkedList.Empty<T>, LinkedList.NotEmpty<T> -
Constructor Summary
ConstructorsConstructorDescriptionNotEmpty(T first, LinkedList<T> rest) Creates an instance of aNotEmptyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.first()Returns the value of thefirstrecord component.final inthashCode()Returns a hash code value for this object.rest()Returns the value of therestrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
NotEmpty
Creates an instance of aNotEmptyrecord class.- Parameters:
first- the value for thefirstrecord componentrest- the value for therestrecord 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). -
first
Returns the value of thefirstrecord component.- Returns:
- the value of the
firstrecord component
-
rest
Returns the value of therestrecord component.- Returns:
- the value of the
restrecord component
-