public enum AuthValues extends Enum<AuthValues>
| Enum Constant and Description |
|---|
CLIENT_AUTH |
MUTUAL_AUTH |
NONE |
SERVER_AUTH |
| Modifier and Type | Method and Description |
|---|---|
static AuthValues |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthValues NONE
public static final AuthValues SERVER_AUTH
public static final AuthValues CLIENT_AUTH
public static final AuthValues MUTUAL_AUTH
public static AuthValues[] values()
for (AuthValues c : AuthValues.values()) System.out.println(c);
public static AuthValues 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 nullCopyright © 2022. All rights reserved.