RawJsonInheritCodec interface
Пакет: com.hypixel.hytale.codec
Файл: com/hypixel/hytale/codec/RawJsonInheritCodec.java
extends: RawJsonCodec<T>
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
void |
decodeAndInheritJsonvoid decodeAndInheritJson(RawJsonReader var1, T var2, T var3, ExtraInfo var4) |
Исходный код
Показать/скрыть
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 RawJsonInheritCodec<T> class="kw">extends RawJsonCodec<T> {
@Nullable
T decodeAndInheritJson(RawJsonReader var1, T var2, ExtraInfo var3) class="kw">throws IOException;
void decodeAndInheritJson(RawJsonReader var1, T var2, T var3, ExtraInfo var4) class="kw">throws IOException;
}