com.unblu.webapi.model.v3.ENamedAreaOrderByField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of models-v3 Show documentation
Show all versions of models-v3 Show documentation
Java classes corresponding to the JSON bodies
The newest version!
package com.unblu.webapi.model.v3;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Gets or Sets ENamedAreaOrderByField
*/
public enum ENamedAreaOrderByField {
/**
* ID: Sort by the 'id' attribute
*/
ID("ID"),
/**
* NAME: Sort by the 'name' attribute
*/
NAME("NAME"),
/**
* DESCRIPTION: Sort by the 'description' attribute
*/
DESCRIPTION("DESCRIPTION"),
/**
* SITE_ID: Sort by the 'siteId' attribute
*/
SITE_ID("SITE_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;
ENamedAreaOrderByField(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static ENamedAreaOrderByField fromValue(String value) {
for (ENamedAreaOrderByField b : ENamedAreaOrderByField.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}