Package net.minecraft.client.gl
Record Class PostEffectPipeline
java.lang.Object
java.lang.Record
net.minecraft.client.gl.PostEffectPipeline
- Record Components:
- internalTargets-
- passes-
@Environment(CLIENT)
public record PostEffectPipeline(Map<Identifier,PostEffectPipeline.Targets> internalTargets, List<PostEffectPipeline.Pass> passes)
extends Record 
- Mappings:
- Namespace - Name - named - net/minecraft/client/gl/PostEffectPipeline- intermediary - net/minecraft/class_9962- official - gme- named - internalTargets- intermediary - comp_3016- official - b- named - passes- intermediary - comp_3017- official - c
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final recordstatic interfacestatic final recordstatic final recordstatic interfacestatic final recordstatic final recordstatic final record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PostEffectPipeline> private final Map<Identifier, PostEffectPipeline.Targets> The field for theinternalTargetsrecord component.private final List<PostEffectPipeline.Pass> The field for thepassesrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPostEffectPipeline(Map<Identifier, PostEffectPipeline.Targets> map, List<PostEffectPipeline.Pass> list) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theinternalTargetsrecord component.passes()Returns the value of thepassesrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
internalTargetsThe field for theinternalTargetsrecord component.
- 
passesThe field for thepassesrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/client/gl/PostEffectPipeline;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_53111- Lnet/minecraft/class_9962;field_53111:Lcom/mojang/serialization/Codec;- official - a- Lgme;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
PostEffectPipelinepublic PostEffectPipeline(Map<Identifier, PostEffectPipeline.Targets> map, List<PostEffectPipeline.Pass> list) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
internalTargetsReturns the value of theinternalTargetsrecord component.- Returns:
- the value of the internalTargetsrecord component
 
- 
passesReturns the value of thepassesrecord component.- Returns:
- the value of the passesrecord component
 
 
-