fi.metatavu.edelphi.rest.model.QueryState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edelphi-api-spec Show documentation
Show all versions of edelphi-api-spec Show documentation
Specifications for eDelphi API
package fi.metatavu.edelphi.rest.model;
import java.time.*;
import java.util.*;
import javax.validation.constraints.*;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Gets or Sets QueryState
*/
public enum QueryState {
EDIT("EDIT"),
ACTIVE("ACTIVE"),
CLOSED("CLOSED");
private String value;
QueryState(String value) {
this.value = value;
}
@Override
@JsonValue
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static QueryState fromValue(String text) {
for (QueryState b : QueryState.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
}