Package net.minecraft.server.packs
Record Class FeatureFlagsMetadataSection
java.lang.Object
java.lang.Record
net.minecraft.server.packs.FeatureFlagsMetadataSection
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final com.mojang.serialization.Codec<FeatureFlagsMetadataSection>
private final FeatureFlagSet
The field for theflags
record component.static final MetadataSectionType<FeatureFlagsMetadataSection>
-
Constructor Summary
ConstructorDescriptionCreates an instance of aFeatureFlagsMetadataSection
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.flags()
Returns the value of theflags
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
flags
The field for theflags
record component. -
CODEC
-
TYPE
-
-
Constructor Details
-
FeatureFlagsMetadataSection
Creates an instance of aFeatureFlagsMetadataSection
record class.- Parameters:
flags
- the value for theflags
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)
. -
flags
Returns the value of theflags
record component.- Returns:
- the value of the
flags
record component
-