Package net.minestom.server.utils
Record Class Either<L,R>
java.lang.Object
java.lang.Record
net.minestom.server.utils.Either<L,R>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
isLeft()
Returns the value of theisLeft
record component.left()
Returns the value of theleft
record component.static <T,
U> Either <T, U> left
(T left) <T> T
right()
Returns the value of theright
record component.static <T,
U> Either <U, T> right
(T right) final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Either
Creates an instance of aEither
record class.- Parameters:
isLeft
- the value for theisLeft
record componentleft
- the value for theleft
record componentright
- the value for theright
record component
-
-
Method Details
-
left
-
right
-
map
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
isLeft
public boolean isLeft()Returns the value of theisLeft
record component.- Returns:
- the value of the
isLeft
record component
-
left
Returns the value of theleft
record component.- Returns:
- the value of the
left
record component
-
right
Returns the value of theright
record component.- Returns:
- the value of the
right
record component
-