fromString static method
Implementation
static CredentialState fromString(String state) {
switch (state.toLowerCase()) {
case "active":
return CredentialState.ACTIVE;
case "revoked":
return CredentialState.REVOKED;
default:
throw Exception("Cannot initialize CredentialState from invalid String value $state");
}
}