Record Class PostChainConfig.InternalTarget
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.PostChainConfig.InternalTarget
- Enclosing class:
PostChainConfig
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for theclearColorrecord component.static final com.mojang.serialization.Codec<PostChainConfig.InternalTarget> The field for theheightrecord component.private final booleanThe field for thepersistentrecord component.The field for thewidthrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionInternalTarget(Optional<Integer> width, Optional<Integer> height, boolean persistent, int clearColor) Creates an instance of aInternalTargetrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of theclearColorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.height()Returns the value of theheightrecord component.booleanReturns the value of thepersistentrecord component.final StringtoString()Returns a string representation of this record class.width()Returns the value of thewidthrecord component.
-
Field Details
-
width
-
height
-
persistent
private final boolean persistentThe field for thepersistentrecord component. -
clearColor
private final int clearColorThe field for theclearColorrecord component. -
CODEC
-
-
Constructor Details
-
InternalTarget
public InternalTarget(Optional<Integer> width, Optional<Integer> height, boolean persistent, int clearColor) Creates an instance of aInternalTargetrecord class.- Parameters:
width- the value for thewidthrecord componentheight- the value for theheightrecord componentpersistent- the value for thepersistentrecord componentclearColor- the value for theclearColorrecord component
-
-
Method Details
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
width
-
height
-
persistent
public boolean persistent()Returns the value of thepersistentrecord component.- Returns:
- the value of the
persistentrecord component
-
clearColor
public int clearColor()Returns the value of theclearColorrecord component.- Returns:
- the value of the
clearColorrecord component
-