Package net.minecraft.server.commands
Record Class FunctionCommand.FunctionResult
java.lang.Object
java.lang.Record
net.minecraft.server.commands.FunctionCommand.FunctionResult
- Enclosing class:
FunctionCommand
-
Field Summary
-
Constructor Summary
ConstructorDescriptionFunctionResult
(int value, boolean isReturn) Creates an instance of aFunctionResult
record class. -
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
isReturn()
Returns the value of theisReturn
record component.final String
toString()
Returns a string representation of this record class.int
value()
Returns the value of thevalue
record component.
-
Field Details
-
value
private final int valueThe field for thevalue
record component. -
isReturn
private final boolean isReturnThe field for theisReturn
record component.
-
-
Constructor Details
-
FunctionResult
public FunctionResult(int value, boolean isReturn) Creates an instance of aFunctionResult
record class.- Parameters:
value
- the value for thevalue
record componentisReturn
- the value for theisReturn
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 with '=='. -
value
public int value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
isReturn
public boolean isReturn()Returns the value of theisReturn
record component.- Returns:
- the value of the
isReturn
record component
-