io.nem.symbol.sdk.openapi.okhttp_gson.model.AliasActionEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symbol-openapi-okhttp-gson-client Show documentation
Show all versions of symbol-openapi-okhttp-gson-client Show documentation
symbol-openapi-okhttp-gson-client Generated Open API client for symbol-sdk-java
/*
* Catapult REST Endpoints
* OpenAPI Specification of catapult-rest 1.1.2
*
* The version of the OpenAPI document: 0.9.4
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.nem.symbol.sdk.openapi.okhttp_gson.model;
import java.util.Objects;
import java.util.Arrays;
import io.swagger.annotations.ApiModel;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Alias action: * 0 - Unlink alias. * 1 - Link alias.
*/
@JsonAdapter(AliasActionEnum.Adapter.class)
public enum AliasActionEnum {
NUMBER_0(0),
NUMBER_1(1);
private Integer value;
AliasActionEnum(Integer value) {
this.value = value;
}
public Integer getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static AliasActionEnum fromValue(Integer value) {
for (AliasActionEnum b : AliasActionEnum.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 AliasActionEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public AliasActionEnum read(final JsonReader jsonReader) throws IOException {
Integer value = jsonReader.nextInt();
return AliasActionEnum.fromValue(value);
}
}
}