Record Class ConditionCodec.OptionalConditionalDecoder<A>
java.lang.Object
java.lang.Record
net.minecraftforge.common.crafting.conditions.ConditionCodec.OptionalConditionalDecoder<A>
- All Implemented Interfaces:
- com.mojang.serialization.Decoder<Optional<A>>
- Enclosing class:
- ConditionCodec
- 
Nested Class Summary
- 
Field SummaryFields
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprivateOptionalConditionalDecoder(com.mojang.serialization.Decoder<A> normal, String key) Creates an instance of aOptionalConditionalDecoderrecord class.
- 
Method SummaryModifier and TypeMethodDescriptiondecode(com.mojang.serialization.DynamicOps<T> ops, T input) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.com.mojang.serialization.Decoder<A>normal()Returns the value of thenormalrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.mojang.serialization.Decoderboxed, decode, fieldOf, flatMap, map, parse, parse, promotePartial, simple, terminal, withLifecycle
- 
Field Details- 
normalThe field for thenormalrecord component.
- 
keyThe field for thekeyrecord component.
 
- 
- 
Constructor Details- 
OptionalConditionalDecoderCreates an instance of aOptionalConditionalDecoderrecord class.- Parameters:
- normal- the value for the- normalrecord component
- key- the value for the- keyrecord component
 
 
- 
- 
Method Details- 
decodepublic <T> com.mojang.serialization.DataResult<com.mojang.datafixers.util.Pair<Optional<A>,T>> decode(com.mojang.serialization.DynamicOps<T> ops, T input) - Specified by:
- decodein interface- com.mojang.serialization.Decoder<A>
 
- 
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).
- 
normalReturns the value of thenormalrecord component.- Returns:
- the value of the normalrecord component
 
- 
keyReturns the value of thekeyrecord component.- Returns:
- the value of the keyrecord component
 
 
-