dev.fitko.fitconnect.api.domain.model.jwk.KtyEnum 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.jwk;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
public enum KtyEnum {
RSA("RSA");
private static final Map CONSTANTS = new HashMap<>();
static {
for (final KtyEnum c : values()) {
CONSTANTS.put(c.value, c);
}
}
private final String value;
KtyEnum(final String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static KtyEnum fromValue(final String value) {
final KtyEnum constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
return constant;
}
}