io.proximax.sdk.gen.model.LinkActionEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-xpx-chain-sdk Show documentation
Show all versions of java-xpx-chain-sdk Show documentation
The ProximaX Sirius Chain Java SDK is a Java library for interacting with the Sirius Blockchain.
The newest version!
/*
* Catapult REST API Reference
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.7.15
*
*
* 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.proximax.sdk.gen.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;
/**
* The type of the action: * 0 - Link. * 1 - Unlink.
*/
@JsonAdapter(LinkActionEnum.Adapter.class)
public enum LinkActionEnum {
NUMBER_0(0),
NUMBER_1(1);
private Integer value;
LinkActionEnum(Integer value) {
this.value = value;
}
public Integer getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static LinkActionEnum fromValue(Integer value) {
for (LinkActionEnum b : LinkActionEnum.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 LinkActionEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public LinkActionEnum read(final JsonReader jsonReader) throws IOException {
Integer value = jsonReader.nextInt();
return LinkActionEnum.fromValue(value);
}
}
}