Record Class ForgeCapabilityHandler.SimpleProvider<CAP>

java.lang.Object
java.lang.Record
at.petrak.hexcasting.forge.cap.ForgeCapabilityHandler.SimpleProvider<CAP>
All Implemented Interfaces:
net.minecraftforge.common.capabilities.ICapabilityProvider
Enclosing class:
ForgeCapabilityHandler

public static record ForgeCapabilityHandler.SimpleProvider<CAP>(BooleanSupplier invalidated, net.minecraftforge.common.capabilities.Capability<CAP> capability, net.minecraftforge.common.util.LazyOptional<CAP> instance) extends Record implements net.minecraftforge.common.capabilities.ICapabilityProvider
  • Constructor Summary

    Constructors
    Constructor
    Description
    SimpleProvider(BooleanSupplier invalidated, net.minecraftforge.common.capabilities.Capability<CAP> capability, net.minecraftforge.common.util.LazyOptional<CAP> instance)
    Creates an instance of a SimpleProvider record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraftforge.common.capabilities.Capability<CAP>
    Returns the value of the capability record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    <T> @NotNull net.minecraftforge.common.util.LazyOptional<T>
    getCapability(@NotNull net.minecraftforge.common.capabilities.Capability<T> cap, @Nullable net.minecraft.core.Direction side)
     
    final int
    Returns a hash code value for this object.
    net.minecraftforge.common.util.LazyOptional<CAP>
    Returns the value of the instance record component.
    Returns the value of the invalidated record component.
    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 net.minecraftforge.common.capabilities.ICapabilityProvider

    getCapability
  • Constructor Details

    • SimpleProvider

      public SimpleProvider(BooleanSupplier invalidated, net.minecraftforge.common.capabilities.Capability<CAP> capability, net.minecraftforge.common.util.LazyOptional<CAP> instance)
      Creates an instance of a SimpleProvider record class.
      Parameters:
      invalidated - the value for the invalidated record component
      capability - the value for the capability record component
      instance - the value for the instance record component
  • Method Details

    • getCapability

      @NotNull public <T> @NotNull net.minecraftforge.common.util.LazyOptional<T> getCapability(@NotNull @NotNull net.minecraftforge.common.capabilities.Capability<T> cap, @Nullable @Nullable net.minecraft.core.Direction side)
      Specified by:
      getCapability in interface net.minecraftforge.common.capabilities.ICapabilityProvider
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • invalidated

      public BooleanSupplier invalidated()
      Returns the value of the invalidated record component.
      Returns:
      the value of the invalidated record component
    • capability

      public net.minecraftforge.common.capabilities.Capability<CAP> capability()
      Returns the value of the capability record component.
      Returns:
      the value of the capability record component
    • instance

      public net.minecraftforge.common.util.LazyOptional<CAP> instance()
      Returns the value of the instance record component.
      Returns:
      the value of the instance record component