Record Class PostChainConfig.TextureInput

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.PostChainConfig.TextureInput
All Implemented Interfaces:
PostChainConfig.Input
Enclosing class:
PostChainConfig

public static record PostChainConfig.TextureInput(String samplerName, ResourceLocation location, int width, int height, boolean bilinear) extends Record implements PostChainConfig.Input
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final boolean
    The field for the bilinear record component.
    static final com.mojang.serialization.Codec<PostChainConfig.TextureInput>
     
    private final int
    The field for the height record component.
    private final ResourceLocation
    The field for the location record component.
    private final String
    The field for the samplerName record component.
    private final int
    The field for the width record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TextureInput(String samplerName, ResourceLocation location, int width, int height, boolean bilinear)
    Creates an instance of a TextureInput record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the bilinear record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    Returns the value of the location record component.
     
    Returns the value of the samplerName record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • samplerName

      private final String samplerName
      The field for the samplerName record component.
    • location

      private final ResourceLocation location
      The field for the location record component.
    • width

      private final int width
      The field for the width record component.
    • height

      private final int height
      The field for the height record component.
    • bilinear

      private final boolean bilinear
      The field for the bilinear record component.
    • CODEC

      public static final com.mojang.serialization.Codec<PostChainConfig.TextureInput> CODEC
  • Constructor Details

    • TextureInput

      public TextureInput(String samplerName, ResourceLocation location, int width, int height, boolean bilinear)
      Creates an instance of a TextureInput record class.
      Parameters:
      samplerName - the value for the samplerName record component
      location - the value for the location record component
      width - the value for the width record component
      height - the value for the height record component
      bilinear - the value for the bilinear record component
  • Method Details

    • referencedTargets

      public Set<ResourceLocation> referencedTargets()
      Specified by:
      referencedTargets in interface PostChainConfig.Input
    • 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.
    • samplerName

      public String samplerName()
      Returns the value of the samplerName record component.
      Specified by:
      samplerName in interface PostChainConfig.Input
      Returns:
      the value of the samplerName record component
    • location

      public ResourceLocation location()
      Returns the value of the location record component.
      Returns:
      the value of the location record component
    • width

      public int width()
      Returns the value of the width record component.
      Returns:
      the value of the width record component
    • height

      public int height()
      Returns the value of the height record component.
      Returns:
      the value of the height record component
    • bilinear

      public boolean bilinear()
      Returns the value of the bilinear record component.
      Returns:
      the value of the bilinear record component