gson-compile/gson-compile-example/src/main/java/io/gitlab/jfronny/gson/compile/example/ExampleAdapter.java

17 lines
443 B
Java

package io.gitlab.jfronny.gson.compile.example;
import io.gitlab.jfronny.gson.stream.JsonReader;
import io.gitlab.jfronny.gson.stream.JsonWriter;
import java.io.IOException;
public class ExampleAdapter {
public static void write(boolean bool, JsonWriter writer) throws IOException {
writer.value(!bool);
}
public static boolean read(JsonReader reader) throws IOException {
return !reader.nextBoolean();
}
}