Package net.minecraft.command
Record Class ExecutionFlags
java.lang.Object
java.lang.Record
net.minecraft.command.ExecutionFlags
- Record Components:
flags
-
- Mappings:
Namespace Name official gj
intermediary net/minecraft/class_8936
named net/minecraft/command/ExecutionFlags
official b
intermediary comp_2020
named flags
-
Field Summary
Modifier and TypeFieldDescriptionprivate final byte
The field for theflags
record component.private static final byte
static final ExecutionFlags
private static final byte
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.byte
flags()
Returns the value of theflags
record component.final int
hashCode()
Returns a hash code value for this object.boolean
boolean
isSilent()
private ExecutionFlags
set
(byte flag) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
flags
private final byte flagsThe field for theflags
record component. -
NONE
- Mappings:
Namespace Name Mixin selector official a
Lgj;a:Lgj;
intermediary field_47160
Lnet/minecraft/class_8936;field_47160:Lnet/minecraft/class_8936;
named NONE
Lnet/minecraft/command/ExecutionFlags;NONE:Lnet/minecraft/command/ExecutionFlags;
-
SILENT
private static final byte SILENT- See Also:
- Mappings:
Namespace Name Mixin selector official c
Lgj;c:B
intermediary field_47161
Lnet/minecraft/class_8936;field_47161:B
named SILENT
Lnet/minecraft/command/ExecutionFlags;SILENT:B
-
INSIDE_RETURN_RUN
private static final byte INSIDE_RETURN_RUN- See Also:
- Mappings:
Namespace Name Mixin selector official d
Lgj;d:B
intermediary field_47162
Lnet/minecraft/class_8936;field_47162:B
named INSIDE_RETURN_RUN
Lnet/minecraft/command/ExecutionFlags;INSIDE_RETURN_RUN:B
-
-
Constructor Details
-
ExecutionFlags
public ExecutionFlags(byte byte2)
-
-
Method Details
-
set
- Mappings:
Namespace Name Mixin selector official a
Lgj;a(B)Lgj;
intermediary method_54885
Lnet/minecraft/class_8936;method_54885(B)Lnet/minecraft/class_8936;
named set
Lnet/minecraft/command/ExecutionFlags;set(B)Lnet/minecraft/command/ExecutionFlags;
-
isSilent
public boolean isSilent()- Mappings:
Namespace Name Mixin selector official a
Lgj;a()Z
intermediary method_54884
Lnet/minecraft/class_8936;method_54884()Z
named isSilent
Lnet/minecraft/command/ExecutionFlags;isSilent()Z
-
setSilent
- Mappings:
Namespace Name Mixin selector official b
Lgj;b()Lgj;
intermediary method_54886
Lnet/minecraft/class_8936;method_54886()Lnet/minecraft/class_8936;
named setSilent
Lnet/minecraft/command/ExecutionFlags;setSilent()Lnet/minecraft/command/ExecutionFlags;
-
isInsideReturnRun
public boolean isInsideReturnRun()- Mappings:
Namespace Name Mixin selector official c
Lgj;c()Z
intermediary method_54887
Lnet/minecraft/class_8936;method_54887()Z
named isInsideReturnRun
Lnet/minecraft/command/ExecutionFlags;isInsideReturnRun()Z
-
setInsideReturnRun
- Mappings:
Namespace Name Mixin selector official d
Lgj;d()Lgj;
intermediary method_54888
Lnet/minecraft/class_8936;method_54888()Lnet/minecraft/class_8936;
named setInsideReturnRun
Lnet/minecraft/command/ExecutionFlags;setInsideReturnRun()Lnet/minecraft/command/ExecutionFlags;
-
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 '=='. -
flags
public byte flags()Returns the value of theflags
record component.- Returns:
- the value of the
flags
record component
-