Package net.minestom.server.crypto
Record Class FilterMask
java.lang.Object
java.lang.Record
net.minestom.server.crypto.FilterMask
- All Implemented Interfaces:
NetworkBuffer.Writer
public record FilterMask(@NotNull FilterMask.Type type, @NotNull BitSet mask)
extends Record
implements NetworkBuffer.Writer
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionFilterMask(@NotNull FilterMask.Type type, @NotNull BitSet mask) Creates an instance of aFilterMaskrecord class.FilterMask(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull BitSetmask()Returns the value of themaskrecord component.final StringtoString()Returns a string representation of this record class.@NotNull FilterMask.Typetype()Returns the value of thetyperecord component.voidwrite(@NotNull NetworkBuffer writer)
-
Constructor Details
-
FilterMask
-
FilterMask
Creates an instance of aFilterMaskrecord class.- Parameters:
type- the value for thetyperecord componentmask- the value for themaskrecord component
-
-
Method Details
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
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). -
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
mask
Returns the value of themaskrecord component.- Returns:
- the value of the
maskrecord component
-