Package net.minecraft.util
Record Class ExtraCodecs.StrictUnboundedMapCodec<K,V>
java.lang.Object
java.lang.Record
net.minecraft.util.ExtraCodecs.StrictUnboundedMapCodec<K,V>
- All Implemented Interfaces:
com.mojang.serialization.Codec<Map<K,,V>> com.mojang.serialization.codecs.BaseMapCodec<K,,V> com.mojang.serialization.Decoder<Map<K,,V>> com.mojang.serialization.Encoder<Map<K,V>>
- Enclosing class:
ExtraCodecs
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.mojang.serialization.Codec
com.mojang.serialization.Codec.RecursiveCodec<T>, com.mojang.serialization.Codec.ResultFunction<A>Nested classes/interfaces inherited from interface com.mojang.serialization.Decoder
com.mojang.serialization.Decoder.Boxed<A>, com.mojang.serialization.Decoder.Simple<A>, com.mojang.serialization.Decoder.Terminal<A> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.mojang.serialization.Codec<V> The field for theelementCodecrecord component.private final com.mojang.serialization.Codec<K> The field for thekeyCodecrecord component.Fields inherited from interface com.mojang.serialization.Codec
BOOL, BYTE, BYTE_BUFFER, DOUBLE, EMPTY, FLOAT, INT, INT_STREAM, LONG, LONG_STREAM, PASSTHROUGH, SHORT, STRING -
Constructor Summary
ConstructorsConstructorDescriptionStrictUnboundedMapCodec(com.mojang.serialization.Codec<K> keyCodec, com.mojang.serialization.Codec<V> elementCodec) Creates an instance of aStrictUnboundedMapCodecrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondecode(com.mojang.serialization.DynamicOps<T> p_301018_, com.mojang.serialization.MapLike<T> p_301263_) decode(com.mojang.serialization.DynamicOps<T> p_301258_, T p_301052_) com.mojang.serialization.Codec<V> Returns the value of theelementCodecrecord component.<T> com.mojang.serialization.DataResult<T> final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.com.mojang.serialization.Codec<K> keyCodec()Returns the value of thekeyCodecrecord component.toString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.mojang.serialization.codecs.BaseMapCodec
encodeMethods inherited from interface com.mojang.serialization.Codec
comapFlatMap, deprecated, dispatch, dispatch, dispatchMap, dispatchMap, dispatchStable, fieldOf, flatComapMap, flatXmap, lenientOptionalFieldOf, lenientOptionalFieldOf, lenientOptionalFieldOf, lenientOptionalFieldOf, listOf, listOf, mapResult, optionalFieldOf, optionalFieldOf, optionalFieldOf, optionalFieldOf, orElse, orElse, orElse, orElseGet, orElseGet, orElseGet, partialDispatch, promotePartial, sizeLimitedListOf, stable, validate, withLifecycle, xmapMethods inherited from interface com.mojang.serialization.Decoder
boxed, decode, flatMap, map, parse, parse, simple, terminalMethods inherited from interface com.mojang.serialization.Encoder
comap, encodeStart, flatComap
-
Field Details
-
keyCodec
The field for thekeyCodecrecord component. -
elementCodec
The field for theelementCodecrecord component.
-
-
Constructor Details
-
StrictUnboundedMapCodec
public StrictUnboundedMapCodec(com.mojang.serialization.Codec<K> keyCodec, com.mojang.serialization.Codec<V> elementCodec) Creates an instance of aStrictUnboundedMapCodecrecord class.- Parameters:
keyCodec- the value for thekeyCodecrecord componentelementCodec- the value for theelementCodecrecord component
-
-
Method Details
-
decode
-
decode
public <T> com.mojang.serialization.DataResult<com.mojang.datafixers.util.Pair<Map<K,V>, decodeT>> (com.mojang.serialization.DynamicOps<T> p_301258_, T p_301052_) - Specified by:
decodein interfacecom.mojang.serialization.Decoder<K>
-
encode
public <T> com.mojang.serialization.DataResult<T> encode(Map<K, V> p_301101_, com.mojang.serialization.DynamicOps<T> p_301252_, T p_301326_) - Specified by:
encodein interfacecom.mojang.serialization.Encoder<K>
-
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). -
keyCodec
Returns the value of thekeyCodecrecord component. -
elementCodec
Returns the value of theelementCodecrecord component.
-