Package net.minecraft.predicate
Record Class LightPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.LightPredicate
- Record Components:
range
-
- Mappings:
Namespace Name official cf
intermediary net/minecraft/class_4552
named net/minecraft/predicate/LightPredicate
official b
intermediary comp_1791
named range
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<LightPredicate>
private final NumberRange.IntRange
The field for therange
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aLightPredicate
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.range()
Returns the value of therange
record component.boolean
test
(ServerWorld world, BlockPos pos) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
range
The field for therange
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lcf;a:Lcom/mojang/serialization/Codec;
intermediary field_45757
Lnet/minecraft/class_4552;field_45757:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/predicate/LightPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LightPredicate
Creates an instance of aLightPredicate
record class.- Parameters:
range
- the value for therange
record component
-
-
Method Details
-
test
- Mappings:
Namespace Name Mixin selector official a
Lcf;a(Land;Lhx;)Z
intermediary method_22483
Lnet/minecraft/class_4552;method_22483(Lnet/minecraft/class_3218;Lnet/minecraft/class_2338;)Z
named test
Lnet/minecraft/predicate/LightPredicate;test(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;)Z
-
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)
. -
range
Returns the value of therange
record component.- Returns:
- the value of the
range
record component
-