com.messente.api.ErrorCodePhonebook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messente-api Show documentation
Show all versions of messente-api Show documentation
Messente API - Connecting Services to People
The newest version!
/*
* Messente API
* [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
*
* The version of the OpenAPI document: 2.0.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.messente.api;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.JsonElement;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Matches the following error title. This field is a constant * 201 - Invalid data * 202 - Unauthorized * 203 - Missing resource * 204 - Conflict * 244 - Client error * 205 - General error
*/
@JsonAdapter(ErrorCodePhonebook.Adapter.class)
public enum ErrorCodePhonebook {
_201("201"),
_202("202"),
_203("203"),
_204("204"),
_244("244"),
_205("205");
private String value;
ErrorCodePhonebook(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ErrorCodePhonebook fromValue(String value) {
for (ErrorCodePhonebook b : ErrorCodePhonebook.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final ErrorCodePhonebook enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ErrorCodePhonebook read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ErrorCodePhonebook.fromValue(value);
}
}
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
String value = jsonElement.getAsString();
ErrorCodePhonebook.fromValue(value);
}
}