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
-
Constructor Summary
ConstructorDescriptionFilterMask
(@NotNull FilterMask.Type type, @NotNull BitSet mask) Creates an instance of aFilterMask
record class.FilterMask
(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull BitSet
mask()
Returns the value of themask
record component.final String
toString()
Returns a string representation of this record class.@NotNull FilterMask.Type
type()
Returns the value of thetype
record component.void
write
(@NotNull NetworkBuffer writer)
-
Constructor Details
-
FilterMask
-
FilterMask
Creates an instance of aFilterMask
record class.- Parameters:
type
- the value for thetype
record componentmask
- the value for themask
record component
-
-
Method Details
-
write
- Specified by:
write
in 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 thetype
record component.- Returns:
- the value of the
type
record component
-
mask
Returns the value of themask
record component.- Returns:
- the value of the
mask
record component
-