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
ConstructorsModifierConstructorDescriptionprotectedNegatedMask(Mask mask) Creates an instance of aNegatedMaskrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncopy()Returns a copy of the mask.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.mask()Returns the value of themaskrecord component.booleantest(BlockVector3 vector) Returns true if the criteria is met.toMask2D()Get the 2D version of this mask if one exists.final StringtoString()Returns a string representation of this record class.Methods inherited from interface Mask
inverse, optimize, replacesAir, toFilter, toFilter, tryCombine, tryOptimize, tryOr
-
Constructor Details
-
NegatedMask
Creates an instance of aNegatedMaskrecord class.- Parameters:
mask- the value for themaskrecord component
-
-
Method Details
-
test
Description copied from interface:MaskReturns true if the criteria is met. -
toMask2D
-
copy
-
toString
-
hashCode
-
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 themaskrecord component.- Returns:
- the value of the
maskrecord component
-