public enum VerificationMode extends java.lang.Enum<VerificationMode>
| Enum Constant and Description |
|---|
CLIENT
The verification is done by client, and authorizes all users of the client.
|
SENDER
The verification has to be done for each user of a client individually,
and can be done without additional required administrative actions.
|
| Modifier and Type | Method and Description |
|---|---|
static VerificationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerificationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerificationMode SENDER
public static final VerificationMode CLIENT
public static VerificationMode[] values()
for (VerificationMode c : VerificationMode.values()) System.out.println(c);
public static VerificationMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null