public enum Acr extends Enum<Acr>
| Enum Constant and Description |
|---|
ONE_FACTOR |
ONLY_PASSWORD |
PKI_DNIE |
PKI_TOKEN |
TWO_FACTOR |
| Modifier and Type | Method and Description |
|---|---|
static Acr |
get(String value) |
String |
getValue() |
static Acr |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Acr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Acr ONE_FACTOR
public static final Acr TWO_FACTOR
public static final Acr PKI_DNIE
public static final Acr PKI_TOKEN
public static final Acr ONLY_PASSWORD
public static Acr[] values()
for (Acr c : Acr.values()) System.out.println(c);
public static Acr valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
Copyright © 2018. All rights reserved.