RawJsonCodec interface

Пакет: com.hypixel.hytale.codec

Файл: com/hypixel/hytale/codec/RawJsonCodec.java

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.codec;

class="kw">import com.hypixel.hytale.codec.util.RawJsonReader;
class="kw">import java.io.IOException;
class="kw">import javax.annotation.Nullable;

class="kw">public class="kw">interface RawJsonCodec<T> {
   @Nullable
   @Deprecated
   class="kw">default T decodeJson(RawJsonReader var1) class="kw">throws IOException {
      class="kw">return this.decodeJson(var1, EmptyExtraInfo.EMPTY);
   }

   @Nullable
   T decodeJson(RawJsonReader var1, ExtraInfo var2) class="kw">throws IOException;
}