dev.fitko.fitconnect.api.domain.model.metadata.SignatureFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and
routing
The newest version!
package dev.fitko.fitconnect.api.domain.model.metadata;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
public enum SignatureFormat {
CMS("cms"),
XML("xml"),
PDF("pdf"),
ASIC("asic"),
JSON("json");
private static final Map CONSTANTS = new HashMap<>();
static {
for (final SignatureFormat c : values()) {
CONSTANTS.put(c.value, c);
}
}
private final String value;
SignatureFormat(final String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
@JsonValue
public String value() {
return this.value;
}
@JsonCreator
public static SignatureFormat fromValue(final String value) {
final SignatureFormat constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
return constant;
}
}