All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.coinapi.websocket.model._Volume_DslJsonConverter Maven / Gradle / Ivy
package io.coinapi.websocket.model;
public class _Volume_DslJsonConverter implements com.dslplatform.json.Configuration {
private static final java.nio.charset.Charset utf8 = java.nio.charset.Charset.forName("UTF-8");
@Override
public void configure(com.dslplatform.json.DslJson __dsljson) {
ObjectFormatConverter objectConverter = new ObjectFormatConverter(__dsljson);
__dsljson.registerBinder(io.coinapi.websocket.model.Volume.class, objectConverter);
__dsljson.registerReader(io.coinapi.websocket.model.Volume.class, objectConverter);
__dsljson.registerWriter(io.coinapi.websocket.model.Volume.class, objectConverter);
}
public final static class ObjectFormatConverter implements com.dslplatform.json.runtime.FormatConverter, com.dslplatform.json.JsonReader.BindObject {
private final boolean alwaysSerialize;
private final com.dslplatform.json.DslJson __dsljson;
private com.dslplatform.json.JsonReader.ReadObject reader_volumeBySymbol;
private com.dslplatform.json.JsonReader.ReadObject reader_volumeBySymbol() {
if (reader_volumeBySymbol == null) {
java.lang.reflect.Type manifest = io.coinapi.websocket.model.VolumeBySymbol.class;
reader_volumeBySymbol = __dsljson.tryFindReader(manifest);
if (reader_volumeBySymbol == null) {
throw new com.dslplatform.json.ConfigurationException("Unable to find reader for " + manifest + ". Enable runtime conversion by initializing DslJson with new DslJson<>(Settings.basicSetup())");
}
}
return reader_volumeBySymbol;
}
private com.dslplatform.json.JsonWriter.WriteObject writer_volumeBySymbol;
private com.dslplatform.json.JsonWriter.WriteObject writer_volumeBySymbol() {
if (writer_volumeBySymbol == null) {
java.lang.reflect.Type manifest = io.coinapi.websocket.model.VolumeBySymbol.class;
writer_volumeBySymbol = __dsljson.tryFindWriter(manifest);
if (writer_volumeBySymbol == null) {
throw new com.dslplatform.json.ConfigurationException("Unable to find writer for " + manifest + ". Enable runtime conversion by initializing DslJson with new DslJson<>(Settings.basicSetup())");
}
}
return writer_volumeBySymbol;
}
ObjectFormatConverter(com.dslplatform.json.DslJson __dsljson) {
this.alwaysSerialize = !__dsljson.omitDefaults;
this.__dsljson = __dsljson;
}
public io.coinapi.websocket.model.Volume read(final com.dslplatform.json.JsonReader reader) throws java.io.IOException {
if (reader.wasNull()) return null;
return bind(reader, new io.coinapi.websocket.model.Volume());
}
private static final byte[] quoted_type = "\"type\":".getBytes(utf8);
private static final byte[] name_type = "type".getBytes(utf8);
private static final byte[] quoted_volumeBySymbol = ",\"volume_by_symbol\":".getBytes(utf8);
private static final byte[] name_volumeBySymbol = "volume_by_symbol".getBytes(utf8);
private static final byte[] quoted_timeCoinApi = ",\"time_coinapi\":".getBytes(utf8);
private static final byte[] name_timeCoinApi = "time_coinapi".getBytes(utf8);
private static final byte[] quoted_periodId = ",\"period_id\":".getBytes(utf8);
private static final byte[] name_periodId = "period_id".getBytes(utf8);
public final void write(final com.dslplatform.json.JsonWriter writer, final io.coinapi.websocket.model.Volume instance) {
if (instance == null) writer.writeNull();
else {
writer.writeByte((byte)'{');
if (alwaysSerialize) { writeContentFull(writer, instance); writer.writeByte((byte)'}'); }
else if (writeContentMinimal(writer, instance)) writer.getByteBuffer()[writer.size() - 1] = '}';
else writer.writeByte((byte)'}');
}
}
public void writeContentFull(final com.dslplatform.json.JsonWriter writer, final io.coinapi.websocket.model.Volume instance) {
writer.writeAscii(quoted_type);
if (instance.getType() == null) writer.writeNull();
else com.dslplatform.json.StringConverter.serialize(instance.getType(), writer);
writer.writeAscii(quoted_volumeBySymbol);
if (instance.getVolumeBySymbol() == null) writer.writeNull();
else writer.serialize(instance.getVolumeBySymbol(), writer_volumeBySymbol());
writer.writeAscii(quoted_timeCoinApi);
if (instance.getTimeCoinApi() == null) writer.writeNull();
else com.dslplatform.json.JavaTimeConverter.serialize(instance.getTimeCoinApi(), writer);
writer.writeAscii(quoted_periodId);
if (instance.getPeriodId() == null) writer.writeNull();
else com.dslplatform.json.StringConverter.serialize(instance.getPeriodId(), writer);
}
public boolean writeContentMinimal(final com.dslplatform.json.JsonWriter writer, final io.coinapi.websocket.model.Volume instance) {
boolean hasWritten = false;
if (instance.getType() != null) {
writer.writeByte((byte)'"'); writer.writeAscii(name_type); writer.writeByte((byte)'"'); writer.writeByte((byte)':');
com.dslplatform.json.StringConverter.serialize(instance.getType(), writer);
writer.writeByte((byte)','); hasWritten = true;
}
if (instance.getVolumeBySymbol() != null) {
writer.writeByte((byte)'"'); writer.writeAscii(name_volumeBySymbol); writer.writeByte((byte)'"'); writer.writeByte((byte)':');
writer.serialize(instance.getVolumeBySymbol(), writer_volumeBySymbol());
writer.writeByte((byte)','); hasWritten = true;
}
if (instance.getTimeCoinApi() != null) {
writer.writeByte((byte)'"'); writer.writeAscii(name_timeCoinApi); writer.writeByte((byte)'"'); writer.writeByte((byte)':');
com.dslplatform.json.JavaTimeConverter.serialize(instance.getTimeCoinApi(), writer);
writer.writeByte((byte)','); hasWritten = true;
}
if (instance.getPeriodId() != null) {
writer.writeByte((byte)'"'); writer.writeAscii(name_periodId); writer.writeByte((byte)'"'); writer.writeByte((byte)':');
com.dslplatform.json.StringConverter.serialize(instance.getPeriodId(), writer);
writer.writeByte((byte)','); hasWritten = true;
}
return hasWritten;
}
public io.coinapi.websocket.model.Volume bind(final com.dslplatform.json.JsonReader reader, final io.coinapi.websocket.model.Volume instance) throws java.io.IOException {
if (reader.last() != '{') throw reader.newParseError("Expecting '{' for object start");
reader.getNextToken();
bindContent(reader, instance);
return instance;
}
public io.coinapi.websocket.model.Volume readContent(final com.dslplatform.json.JsonReader reader) throws java.io.IOException {
io.coinapi.websocket.model.Volume instance = new io.coinapi.websocket.model.Volume();
bindContent(reader, instance);
return instance;
}
public void bindContent(final com.dslplatform.json.JsonReader reader, final io.coinapi.websocket.model.Volume instance) throws java.io.IOException {
if (reader.last() == '}') return;
if (reader.fillNameWeakHash() != 450 || !reader.wasLastName(name_type)) { bindSlow(reader, instance, 0); return; }
reader.getNextToken();
instance.setType(com.dslplatform.json.StringConverter.READER.read(reader));
if (reader.getNextToken() == '}') return;
if (reader.last() != ',') throw reader.newParseError("Expecting ',' for other mandatory properties"); else reader.getNextToken();
if (reader.fillNameWeakHash() != 1735 || !reader.wasLastName(name_volumeBySymbol)) { bindSlow(reader, instance, 1); return; }
reader.getNextToken();
instance.setVolumeBySymbol(reader.readCollection(reader_volumeBySymbol()));
if (reader.getNextToken() == '}') return;
if (reader.last() != ',') throw reader.newParseError("Expecting ',' for other mandatory properties"); else reader.getNextToken();
if (reader.fillNameWeakHash() != 1265 || !reader.wasLastName(name_timeCoinApi)) { bindSlow(reader, instance, 2); return; }
reader.getNextToken();
if (reader.wasNull()) instance.setTimeCoinApi(null);
else instance.setTimeCoinApi(com.dslplatform.json.JavaTimeConverter.deserializeDateTime(reader));
if (reader.getNextToken() == '}') return;
if (reader.last() != ',') throw reader.newParseError("Expecting ',' for other mandatory properties"); else reader.getNextToken();
if (reader.fillNameWeakHash() != 943 || !reader.wasLastName(name_periodId)) { bindSlow(reader, instance, 3); return; }
reader.getNextToken();
instance.setPeriodId(com.dslplatform.json.StringConverter.READER.read(reader));
if (reader.getNextToken() != '}') {
if (reader.last() == ',') {
reader.getNextToken();
reader.fillNameWeakHash();
bindSlow(reader, instance, 4);
}
if (reader.last() != '}') throw reader.newParseError("Expecting '}' for object end");
}
}
private void bindSlow(final com.dslplatform.json.JsonReader reader, final io.coinapi.websocket.model.Volume instance, int index) throws java.io.IOException {
switch(reader.getLastHash()) {
case -564132972:
reader.getNextToken();
instance.setPeriodId(com.dslplatform.json.StringConverter.READER.read(reader));
reader.getNextToken();
break;
case 1543856616:
reader.getNextToken();
if (reader.wasNull()) instance.setTimeCoinApi(null);
else instance.setTimeCoinApi(com.dslplatform.json.JavaTimeConverter.deserializeDateTime(reader));
reader.getNextToken();
break;
case 1746816638:
reader.getNextToken();
instance.setVolumeBySymbol(reader.readCollection(reader_volumeBySymbol()));
reader.getNextToken();
break;
case 1361572173:
reader.getNextToken();
instance.setType(com.dslplatform.json.StringConverter.READER.read(reader));
reader.getNextToken();
break;
default:
reader.getNextToken();
reader.skip();
}
while (reader.last() == ','){
reader.getNextToken();
switch(reader.fillName()) {
case -564132972:
reader.getNextToken();
instance.setPeriodId(com.dslplatform.json.StringConverter.READER.read(reader));
reader.getNextToken();
break;
case 1543856616:
reader.getNextToken();
if (reader.wasNull()) instance.setTimeCoinApi(null);
else instance.setTimeCoinApi(com.dslplatform.json.JavaTimeConverter.deserializeDateTime(reader));
reader.getNextToken();
break;
case 1746816638:
reader.getNextToken();
instance.setVolumeBySymbol(reader.readCollection(reader_volumeBySymbol()));
reader.getNextToken();
break;
case 1361572173:
reader.getNextToken();
instance.setType(com.dslplatform.json.StringConverter.READER.read(reader));
reader.getNextToken();
break;
default:
reader.getNextToken();
reader.skip();
}
}
if (reader.last() != '}') throw reader.newParseError("Expecting '}' for object end");
}
}
}