public enum UnauthenticatedClientActionV2 extends Enum<UnauthenticatedClientActionV2>
| Enum Constant and Description |
|---|
ALLOW_ANONYMOUS
Enum value AllowAnonymous.
|
REDIRECT_TO_LOGIN_PAGE
Enum value RedirectToLoginPage.
|
RETURN401
Enum value Return401.
|
RETURN403
Enum value Return403.
|
| Modifier and Type | Method and Description |
|---|---|
static UnauthenticatedClientActionV2 |
fromString(String value)
Parses a serialized value to a UnauthenticatedClientActionV2 instance.
|
String |
toString() |
static UnauthenticatedClientActionV2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnauthenticatedClientActionV2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnauthenticatedClientActionV2 REDIRECT_TO_LOGIN_PAGE
public static final UnauthenticatedClientActionV2 ALLOW_ANONYMOUS
public static final UnauthenticatedClientActionV2 RETURN401
public static final UnauthenticatedClientActionV2 RETURN403
public static UnauthenticatedClientActionV2[] values()
public static UnauthenticatedClientActionV2 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 static UnauthenticatedClientActionV2 fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<UnauthenticatedClientActionV2>Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.