Module net.minestom.server
Package net.minestom.server.codec
Record Class Result.Ok<T extends @UnknownNullability Object>
java.lang.Object
java.lang.Record
net.minestom.server.codec.Result.Ok<T>
- Type Parameters:
T
- the value type- Record Components:
value
- the value ofResult.Ok
- All Implemented Interfaces:
Result<T>
- Enclosing interface:
Result<T extends @UnknownNullability Object>
public static record Result.Ok<T extends @UnknownNullability Object>(T extends @UnknownNullability Object value)
extends Record
implements Result<T>
Represents the
Result
was successful.-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.codec.Result
Result.Error<T>, Result.Ok<T extends @UnknownNullability Object>
-
Constructor Summary
Constructors -
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.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minestom.server.codec.Result
cast, map, mapError, mapResult, orElse, orElseThrow, orElseThrow
-
Constructor Details
-
Ok
Creates an instance of aOk
record class.- Parameters:
value
- the value for thevalue
record 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)
. -
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-