Record Class GeyserHasComponentPredicate

java.lang.Object
java.lang.Record
org.geysermc.geyser.item.custom.impl.predicates.GeyserHasComponentPredicate
All Implemented Interfaces:
Predicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>, org.geysermc.geyser.api.predicate.item.HasComponentPredicate, org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>

public record GeyserHasComponentPredicate(@NonNull org.geysermc.geyser.api.util.Identifier component, boolean negated) extends Record implements org.geysermc.geyser.api.predicate.item.HasComponentPredicate
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    @NonNull org.geysermc.geyser.api.util.Identifier
    Returns the value of the component 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.item.ItemPredicateContext>
     
    boolean
    Returns the value of the negated record component.
    boolean
    test(org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext 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

    • GeyserHasComponentPredicate

      public GeyserHasComponentPredicate(@NonNull org.geysermc.geyser.api.util.Identifier component, boolean negated)
      Creates an instance of a GeyserHasComponentPredicate record class.
      Parameters:
      component - the value for the component record component
      negated - the value for the negated record component
  • Method Details

    • test

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

      public @NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext> negate()
      Specified by:
      negate in interface org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>
      Specified by:
      negate in interface Predicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>
    • 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.
    • component

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

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