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 class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.sk89q.worldedit.function.mask.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
Description copied from interface:MaskGet the 2D version of this mask if one exists. -
copy
Description copied from interface:MaskReturns 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 themaskrecord component.- Returns:
- the value of the
maskrecord component
-