com.backblaze.b2.json.B2JsonByteHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of b2-sdk-core Show documentation
Show all versions of b2-sdk-core Show documentation
The core logic for B2 SDK for Java. Does not include any implementations of B2WebApiClient.
/*
* Copyright 2017, Backblaze Inc. All Rights Reserved.
* License https://www.backblaze.com/using_b2_code.html
*/
package com.backblaze.b2.json;
import java.io.IOException;
/**
* (De)serializes Byte objects.
*/
public class B2JsonByteHandler implements B2JsonTypeHandler {
private final boolean isPrimitive;
public B2JsonByteHandler(boolean isPrimitive) {
this.isPrimitive = isPrimitive;
}
public Class getHandledClass() {
return Byte.class;
}
public void serialize(Byte obj, B2JsonWriter out) throws IOException {
out.writeText(obj.toString());
}
public Byte deserialize(B2JsonReader in, int options) throws B2JsonException, IOException {
String str = in.readNumberAsString();
try {
return Byte.valueOf(str);
}
catch (NumberFormatException e) {
throw new B2JsonException("bad byte: " + str);
}
}
public Byte deserializeUrlParam(String urlValue) throws B2JsonException {
try {
return Byte.valueOf(urlValue);
}
catch (NumberFormatException e) {
throw new B2JsonException("bad byte: " + urlValue);
}
}
public Byte defaultValueForOptional() {
if (isPrimitive) {
return 0;
}
else {
return null;
}
}
public boolean isStringInJson() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy