Record Class GeyserCustomModelDataPredicate.GeyserStringPredicate

java.lang.Object
java.lang.Record
org.geysermc.geyser.item.custom.impl.predicates.GeyserCustomModelDataPredicate.GeyserStringPredicate
All Implemented Interfaces:
Predicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>, org.geysermc.geyser.api.predicate.item.CustomModelDataPredicate.StringPredicate, org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>
Enclosing class:
GeyserCustomModelDataPredicate

public static record GeyserCustomModelDataPredicate.GeyserStringPredicate(@Nullable String string, @org.checkerframework.checker.index.qual.NonNegative int index, boolean negated) extends Record implements org.geysermc.geyser.api.predicate.item.CustomModelDataPredicate.StringPredicate
  • Constructor Summary

    Constructors
    Constructor
    Description
    GeyserStringPredicate(@Nullable String string, @org.checkerframework.checker.index.qual.NonNegative int index, boolean negated)
    Creates an instance of a GeyserStringPredicate record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @org.checkerframework.checker.index.qual.NonNegative int
    Returns the value of the index record component.
    @NonNull org.geysermc.geyser.api.predicate.MinecraftPredicate<org.geysermc.geyser.api.predicate.context.item.ItemPredicateContext>
     
    boolean
    Returns the value of the negated record component.
    @Nullable String
    Returns the value of the string 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

    • GeyserStringPredicate

      public GeyserStringPredicate(@Nullable String string, @org.checkerframework.checker.index.qual.NonNegative int index, boolean negated)
      Creates an instance of a GeyserStringPredicate record class.
      Parameters:
      string - the value for the string record component
      index - the value for the index 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.
    • string

      public @Nullable String string()
      Returns the value of the string record component.
      Specified by:
      string in interface org.geysermc.geyser.api.predicate.item.CustomModelDataPredicate.StringPredicate
      Returns:
      the value of the string record component
    • index

      public @org.checkerframework.checker.index.qual.NonNegative int index()
      Returns the value of the index record component.
      Specified by:
      index in interface org.geysermc.geyser.api.predicate.item.CustomModelDataPredicate.StringPredicate
      Returns:
      the value of the index 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.CustomModelDataPredicate.StringPredicate
      Returns:
      the value of the negated record component