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

    Constructors
    Constructor
    Description
    GeyserDimensionPredicate(@NonNull org.geysermc.geyser.api.util.Identifier dimension, boolean negated)
    Creates an instance of a GeyserDimensionPredicate record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull org.geysermc.geyser.api.util.Identifier
    Returns the value of the dimension record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>
     
    boolean
    Returns the value of the negated record component.
    boolean
    test(org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext context)
     
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods 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 a GeyserDimensionPredicate record class.
      Parameters:
      dimension - the value for the dimension record component
      negated - the value for the negated record component
  • Method Details

    • test

      public boolean test(org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext context)
      Specified by:
      test in interface Predicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>
    • negate

      public @NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext> negate()
      Specified by:
      negate in interface org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>
      Specified by:
      negate in interface Predicate<org.geysermc.geyser.api.predicate.context.MinecraftPredicateContext>
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • dimension

      public @NonNull org.geysermc.geyser.api.util.Identifier dimension()
      Returns the value of the dimension record component.
      Specified by:
      dimension in interface org.geysermc.geyser.api.predicate.DimensionPredicate
      Returns:
      the value of the dimension record component
    • negated

      public boolean negated()
      Returns the value of the negated record component.
      Specified by:
      negated in interface org.geysermc.geyser.api.predicate.DimensionPredicate
      Returns:
      the value of the negated record component