public static enum ExternalSystem.AuthKind extends java.lang.Enum<ExternalSystem.AuthKind>
| Enum Constant and Description |
|---|
API_KEY |
NONE |
OPEN_ID_PKCE |
SIMPLE_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
static ExternalSystem.AuthKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalSystem.AuthKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalSystem.AuthKind NONE
public static final ExternalSystem.AuthKind SIMPLE_CREDENTIALS
public static final ExternalSystem.AuthKind API_KEY
public static final ExternalSystem.AuthKind OPEN_ID_PKCE
public static ExternalSystem.AuthKind[] values()
for (ExternalSystem.AuthKind c : ExternalSystem.AuthKind.values()) System.out.println(c);
public static ExternalSystem.AuthKind 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 nullCopyright © 2024. All Rights Reserved.