Java Code Examples for com.google.gson.internal.bind.TypeAdapters#LONG
The following examples show how to use
com.google.gson.internal.bind.TypeAdapters#LONG .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Gson.java From letv with Apache License 2.0 | 6 votes |
private TypeAdapter<Number> longAdapter(LongSerializationPolicy longSerializationPolicy) { if (longSerializationPolicy == LongSerializationPolicy.DEFAULT) { return TypeAdapters.LONG; } return new TypeAdapter<Number>() { public Number read(JsonReader in) throws IOException { if (in.peek() != JsonToken.NULL) { return Long.valueOf(in.nextLong()); } in.nextNull(); return null; } public void write(JsonWriter out, Number value) throws IOException { if (value == null) { out.nullValue(); } else { out.value(value.toString()); } } }; }
Example 2
Source File: Gson.java From gson with Apache License 2.0 | 6 votes |
private static TypeAdapter<Number> longAdapter(LongSerializationPolicy longSerializationPolicy) { if (longSerializationPolicy == LongSerializationPolicy.DEFAULT) { return TypeAdapters.LONG; } return new TypeAdapter<Number>() { @Override public Number read(JsonReader in) throws IOException { if (in.peek() == JsonToken.NULL) { in.nextNull(); return null; } return in.nextLong(); } @Override public void write(JsonWriter out, Number value) throws IOException { if (value == null) { out.nullValue(); return; } out.value(value.toString()); } }; }
Example 3
Source File: Gson.java From framework with GNU Affero General Public License v3.0 | 6 votes |
private TypeAdapter<Number> longAdapter(LongSerializationPolicy longSerializationPolicy) { if (longSerializationPolicy == LongSerializationPolicy.DEFAULT) { return TypeAdapters.LONG; } return new TypeAdapter<Number>() { @Override public Number read(JsonReader in) throws IOException { if (in.peek() == JsonToken.NULL) { in.nextNull(); return null; } return in.nextLong(); } @Override public void write(JsonWriter out, Number value) throws IOException { if (value == null) { out.nullValue(); return; } out.value(value.toString()); } }; }
Example 4
Source File: Gson.java From MiBandDecompiled with Apache License 2.0 | 5 votes |
private TypeAdapter a(LongSerializationPolicy longserializationpolicy) { if (longserializationpolicy == LongSerializationPolicy.DEFAULT) { return TypeAdapters.LONG; } else { return new k(this); } }