Record Class ShaderModificationManager.Preparations
java.lang.Object
java.lang.Record
foundry.veil.api.client.render.shader.ShaderModificationManager.Preparations
- Enclosing class:
ShaderModificationManager
@Internal
public static record ShaderModificationManager.Preparations(Map<net.minecraft.resources.ResourceLocation,List<ShaderModification>> shaders, Map<ShaderModification,net.minecraft.resources.ResourceLocation> names)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionPreparations(Map<net.minecraft.resources.ResourceLocation, List<ShaderModification>> shaders, Map<ShaderModification, net.minecraft.resources.ResourceLocation> names) Creates an instance of aPreparationsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Map<ShaderModification, net.minecraft.resources.ResourceLocation> names()Returns the value of thenamesrecord component.Map<net.minecraft.resources.ResourceLocation, List<ShaderModification>> shaders()Returns the value of theshadersrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Preparations
public Preparations(Map<net.minecraft.resources.ResourceLocation, List<ShaderModification>> shaders, Map<ShaderModification, net.minecraft.resources.ResourceLocation> names) Creates an instance of aPreparationsrecord class.- Parameters:
shaders- the value for theshadersrecord componentnames- the value for thenamesrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
shaders
Returns the value of theshadersrecord component.- Returns:
- the value of the
shadersrecord component
-
names
Returns the value of thenamesrecord component.- Returns:
- the value of the
namesrecord component
-