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

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

The newest version!

package com.unblu.webapi.model.v3;

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

/**
 * Gets or Sets ECannedResponseOrderByField
 */
public enum ECannedResponseOrderByField {

	/**
	 * ID: Sort by the 'id' attribute
	 */
	ID("ID"),

	/**
	 * KEY: Sort by the 'key' attribute
	 */
	KEY("KEY"),

	/**
	 * TITLE: Sort by the 'title' attribute
	 */
	TITLE("TITLE"),

	/**
	 * TEXT: Sort by the 'text' attribute
	 */
	TEXT("TEXT"),

	/**
	 * OWNER_TYPE: Sort by the 'ownerType' attribute
	 */
	OWNER_TYPE("OWNER_TYPE"),

	/**
	 * OWNER_ID: Sort by the 'ownerId' attribute
	 */
	OWNER_ID("OWNER_ID"),

	/**
	 * CREATION_TIMESTAMP: Sort by the 'creationTimestamp' attribute
	 */
	CREATION_TIMESTAMP("CREATION_TIMESTAMP"),

	/**
	 * MODIFICATION_TIMESTAMP: Sort by the 'modificationTimestamp' attribute
	 */
	MODIFICATION_TIMESTAMP("MODIFICATION_TIMESTAMP");

	private String value;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy