Package net.minecraft.util
Record Class Brightness
java.lang.Object
java.lang.Record
net.minecraft.util.Brightness
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for theblockrecord component.static final com.mojang.serialization.Codec<Brightness>static Brightnessstatic final com.mojang.serialization.Codec<Integer>private final intThe field for theskyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionBrightness(int block, int sky) Creates an instance of aBrightnessrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintblock()Returns the value of theblockrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intpack()intsky()Returns the value of theskyrecord component.final StringtoString()Returns a string representation of this record class.static Brightnessunpack(int p_270207_)
-
Field Details
-
block
private final int blockThe field for theblockrecord component. -
sky
private final int skyThe field for theskyrecord component. -
LIGHT_VALUE_CODEC
-
CODEC
-
FULL_BRIGHT
-
-
Constructor Details
-
Brightness
public Brightness(int block, int sky) Creates an instance of aBrightnessrecord class.- Parameters:
block- the value for theblockrecord componentsky- the value for theskyrecord component
-
-
Method Details
-
pack
public int pack() -
unpack
-
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 '=='. -
block
public int block()Returns the value of theblockrecord component.- Returns:
- the value of the
blockrecord component
-
sky
public int sky()Returns the value of theskyrecord component.- Returns:
- the value of the
skyrecord component
-