com.messente.api.ErrorTitlePhonebook 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;
/**
* Textual value which corresponds to an error code
*/
@JsonAdapter(ErrorTitlePhonebook.Adapter.class)
public enum ErrorTitlePhonebook {
INVALID_DATA("Invalid data"),
UNAUTHORIZED("Unauthorized"),
MISSING_RESOURCE("Missing resource"),
CONFLICT("Conflict"),
CLIENT_ERROR("Client error"),
GENERAL_ERROR("General error");
private String value;
ErrorTitlePhonebook(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ErrorTitlePhonebook fromValue(String value) {
for (ErrorTitlePhonebook b : ErrorTitlePhonebook.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 ErrorTitlePhonebook enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ErrorTitlePhonebook read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ErrorTitlePhonebook.fromValue(value);
}
}
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
String value = jsonElement.getAsString();
ErrorTitlePhonebook.fromValue(value);
}
}