Package net.minecraft.server.command
Record Class FunctionCommand.FunctionResult
java.lang.Object
java.lang.Record
net.minecraft.server.command.FunctionCommand.FunctionResult
- Record Components:
value
-isReturn
-
- Enclosing class:
FunctionCommand
- Mappings:
Namespace Name official aha$a
intermediary net/minecraft/class_3062$class_8601
named net/minecraft/server/command/FunctionCommand$FunctionResult
official a
intermediary comp_1572
named value
official b
intermediary comp_1573
named isReturn
-
Field Summary
-
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
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
-
Constructor Details
-
FunctionResult
public FunctionResult(int int2, boolean bool)
-
-
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
-