com.bandwidth.voice.models.AnswerFallbackMethodEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
/*
* BandwidthLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.bandwidth.voice.models;
import java.util.ArrayList;
import java.util.List;
import java.util.TreeMap;
/**
* AnswerFallbackMethodEnum to be used.
*/
public enum AnswerFallbackMethodEnum {
POST,
GET;
private static TreeMap valueMap = new TreeMap<>();
private String value;
static {
POST.value = "POST";
GET.value = "GET";
valueMap.put("POST", POST);
valueMap.put("GET", GET);
}
/**
* Returns the enum member associated with the given string value.
* @param toConvert String value to get enum member.
* @return The enum member against the given string value.
*/
@com.fasterxml.jackson.annotation.JsonCreator
public static AnswerFallbackMethodEnum fromString(String toConvert) {
return valueMap.get(toConvert);
}
/**
* Returns the string value associated with the enum member.
* @return The string value against enum member.
*/
@com.fasterxml.jackson.annotation.JsonValue
public String value() {
return value;
}
/**
* Get string representation of this enum.
*/
@Override
public String toString() {
return value.toString();
}
/**
* Convert list of AnswerFallbackMethodEnum values to list of string values.
* @param toConvert The list of AnswerFallbackMethodEnum values to convert.
* @return List of representative string values.
*/
public static List toValue(List toConvert) {
if (toConvert == null) {
return null;
}
List convertedValues = new ArrayList<>();
for (AnswerFallbackMethodEnum enumValue : toConvert) {
convertedValues.add(enumValue.value);
}
return convertedValues;
}
}