Record Class MaterialRules.InvertedBooleanSupplier
java.lang.Object
java.lang.Record
net.minecraft.world.gen.surfacebuilder.MaterialRules.InvertedBooleanSupplier
- Record Components:
target
-
- All Implemented Interfaces:
MaterialRules.BooleanSupplier
- Enclosing class:
MaterialRules
private static record MaterialRules.InvertedBooleanSupplier(MaterialRules.BooleanSupplier target)
extends Record
implements MaterialRules.BooleanSupplier
- Mappings:
Namespace Name official dph$m
intermediary net/minecraft/class_6686$class_6706
named net/minecraft/world/gen/surfacebuilder/MaterialRules$InvertedBooleanSupplier
official a
intermediary comp_206
named target
-
Field Summary
Modifier and TypeFieldDescriptionprivate final MaterialRules.BooleanSupplier
The field for thetarget
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.boolean
get()
final int
hashCode()
Returns a hash code value for this object.target()
Returns the value of thetarget
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
target
The field for thetarget
record component.
-
-
Constructor Details
-
InvertedBooleanSupplier
InvertedBooleanSupplier(MaterialRules.BooleanSupplier booleanSupplier)
-
-
Method Details
-
get
public boolean get()- Specified by:
get
in interfaceMaterialRules.BooleanSupplier
- Mappings:
Namespace Name Mixin selector official b
Ldph$e;b()Z
intermediary method_39069
Lnet/minecraft/class_6686$class_6692;method_39069()Z
named get
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BooleanSupplier;get()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)
. -
target
Returns the value of thetarget
record component.- Returns:
- the value of the
target
record component
-