Record Class GeyserTrimMaterialPredicate

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

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

    Constructors
    Constructor
    Description
    GeyserTrimMaterialPredicate(@NonNull org.geysermc.geyser.api.util.Identifier trimMaterial, boolean negated)
    Creates an instance of a GeyserTrimMaterialPredicate 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.
    @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.
    @NonNull org.geysermc.geyser.api.util.Identifier
    Returns the value of the trimMaterial record component.

    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

    • GeyserTrimMaterialPredicate

      public GeyserTrimMaterialPredicate(@NonNull org.geysermc.geyser.api.util.Identifier trimMaterial, boolean negated)
      Creates an instance of a GeyserTrimMaterialPredicate record class.
      Parameters:
      trimMaterial - the value for the trimMaterial 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.
    • trimMaterial

      public @NonNull org.geysermc.geyser.api.util.Identifier trimMaterial()
      Returns the value of the trimMaterial record component.
      Specified by:
      trimMaterial in interface org.geysermc.geyser.api.predicate.item.TrimMaterialPredicate
      Returns:
      the value of the trimMaterial 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.TrimMaterialPredicate
      Returns:
      the value of the negated record component