public enum LogCredentialType extends Enum<LogCredentialType>
Enum Constant and Description |
---|
ASSERTION |
EMAIL |
IWA |
JWT |
OAUTH_2_0 |
OTP |
PASSWORD |
SMS |
Modifier and Type | Method and Description |
---|---|
static LogCredentialType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
String |
toUrlQueryString(String prefix)
Convert the instance into URL query string.
|
static LogCredentialType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogCredentialType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogCredentialType ASSERTION
public static final LogCredentialType EMAIL
public static final LogCredentialType IWA
public static final LogCredentialType JWT
public static final LogCredentialType OAUTH_2_0
public static final LogCredentialType OTP
public static final LogCredentialType PASSWORD
public static final LogCredentialType SMS
public static LogCredentialType[] values()
for (LogCredentialType c : LogCredentialType.values()) System.out.println(c);
public static LogCredentialType 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()
public String toString()
toString
in class Enum<LogCredentialType>
public static LogCredentialType fromValue(String value)
Copyright © 2017–2023 Okta. All rights reserved.