Interface CatnipCodecUtils


public interface CatnipCodecUtils
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static <T> T
    decode(com.mojang.serialization.Codec<T> codec, net.minecraft.nbt.CompoundTag tag)
     
    static <T> T
    decodeOrThrow(com.mojang.serialization.Codec<T> codec, net.minecraft.nbt.CompoundTag tag)
     
    static <T> @Nullable net.minecraft.nbt.Tag
    encode(com.mojang.serialization.Codec<T> codec, T t)
     
    static <T> net.minecraft.nbt.Tag
    encodeOrThrow(com.mojang.serialization.Codec<T> codec, T t)
     
  • Method Details

    • decode

      @Nullable static <T> T decode(com.mojang.serialization.Codec<T> codec, net.minecraft.nbt.CompoundTag tag)
    • decodeOrThrow

      static <T> T decodeOrThrow(com.mojang.serialization.Codec<T> codec, net.minecraft.nbt.CompoundTag tag)
    • encode

      @Nullable static <T> @Nullable net.minecraft.nbt.Tag encode(com.mojang.serialization.Codec<T> codec, T t)
    • encodeOrThrow

      static <T> net.minecraft.nbt.Tag encodeOrThrow(com.mojang.serialization.Codec<T> codec, T t)