fi.metatavu.edelphi.rest.model.PanelState 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 PanelState
*/
public enum PanelState {
DESIGN("DESIGN"),
IN_PROGRESS("IN_PROGRESS"),
ENDED("ENDED");
private String value;
PanelState(String value) {
this.value = value;
}
@Override
@JsonValue
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static PanelState fromValue(String text) {
for (PanelState b : PanelState.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
}