Package org.geysermc.geyser.impl
Record Class GeyserDimensionPredicate
java.lang.Object
java.lang.Record
org.geysermc.geyser.impl.GeyserDimensionPredicate
- All Implemented Interfaces:
Predicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>,org.geysermc.geyser.api.predicate.DimensionPredicate,org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>
public record GeyserDimensionPredicate(@NonNull org.geysermc.geyser.api.util.Identifier dimension, boolean negated)
extends Record
implements org.geysermc.geyser.api.predicate.DimensionPredicate
-
Constructor Summary
ConstructorsConstructorDescriptionGeyserDimensionPredicate(@NonNull org.geysermc.geyser.api.util.Identifier dimension, boolean negated) Creates an instance of aGeyserDimensionPredicaterecord class. -
Method Summary
Modifier and TypeMethodDescription@NonNull org.geysermc.geyser.api.util.IdentifierReturns the value of thedimensionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext> negate()booleannegated()Returns the value of thenegatedrecord component.booleantest(org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext context) 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 org.geysermc.geyser.api.predicate.MinecraftPredicate
and, or
-
Constructor Details
-
GeyserDimensionPredicate
public GeyserDimensionPredicate(@NonNull org.geysermc.geyser.api.util.Identifier dimension, boolean negated) Creates an instance of aGeyserDimensionPredicaterecord class.- Parameters:
dimension- the value for thedimensionrecord componentnegated- the value for thenegatedrecord component
-
-
Method Details
-
test
public boolean test(org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext context) -
negate
public @NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext> negate() -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
dimension
public @NonNull org.geysermc.geyser.api.util.Identifier dimension()Returns the value of thedimensionrecord component.- Specified by:
dimensionin interfaceorg.geysermc.geyser.api.predicate.DimensionPredicate- Returns:
- the value of the
dimensionrecord component
-
negated
public boolean negated()Returns the value of thenegatedrecord component.- Specified by:
negatedin interfaceorg.geysermc.geyser.api.predicate.DimensionPredicate- Returns:
- the value of the
negatedrecord component
-