Record Class Masks.NegatedMask
java.lang.Object
java.lang.Record
com.sk89q.worldedit.function.mask.Masks.NegatedMask
- All Implemented Interfaces:
Mask
- Enclosing class:
Masks
-
Constructor Summary
ModifierConstructorDescriptionprotected
NegatedMask
(Mask mask) Creates an instance of aNegatedMask
record class. -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Returns a copy of the mask.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.mask()
Returns the value of themask
record component.boolean
test
(BlockVector3 vector) Returns true if the criteria is met.toMask2D()
Get the 2D version of this mask if one exists.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.sk89q.worldedit.function.mask.Mask
inverse, optimize, replacesAir, toFilter, toFilter, tryCombine, tryOptimize, tryOr
-
Constructor Details
-
NegatedMask
Creates an instance of aNegatedMask
record class.- Parameters:
mask
- the value for themask
record component
-
-
Method Details
-
test
Description copied from interface:Mask
Returns true if the criteria is met. -
toMask2D
Description copied from interface:Mask
Get the 2D version of this mask if one exists. -
copy
Description copied from interface:Mask
Returns a copy of the mask. Usually for multi-threaded operation -
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)
. -
mask
Returns the value of themask
record component.- Returns:
- the value of the
mask
record component
-