All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unblu.webapi.model.v3.EDeputyDelegationEscalationLevel Maven / Gradle / Ivy

The newest version!

package com.unblu.webapi.model.v3;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
 * The escalation levels for a deputy delegation
 */
public enum EDeputyDelegationEscalationLevel {

	/**
	 * LEVEL_1
	 */
	LEVEL_1("LEVEL_1"),

	/**
	 * LEVEL_2
	 */
	LEVEL_2("LEVEL_2"),

	/**
	 * LEVEL_3
	 */
	LEVEL_3("LEVEL_3");

	private String value;

	EDeputyDelegationEscalationLevel(String value) {
		this.value = value;
	}

	@JsonValue
	public String getValue() {
		return value;
	}

	@Override
	public String toString() {
		return String.valueOf(value);
	}

	@JsonCreator
	public static EDeputyDelegationEscalationLevel fromValue(String value) {
		for (EDeputyDelegationEscalationLevel b : EDeputyDelegationEscalationLevel.values()) {
			if (b.value.equals(value)) {
				return b;
			}
		}
		throw new IllegalArgumentException("Unexpected value '" + value + "'");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy