public enum DiscoveryAuthMode extends Enum<DiscoveryAuthMode>
| Enum Constant and Description |
|---|
BASIC |
DEFAULT_CHAIN |
ENVIRONMENT |
| Modifier and Type | Method and Description |
|---|---|
static Optional<DiscoveryAuthMode> |
fromStringInsensitive(String candidate) |
static DiscoveryAuthMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscoveryAuthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscoveryAuthMode BASIC
public static final DiscoveryAuthMode ENVIRONMENT
public static final DiscoveryAuthMode DEFAULT_CHAIN
public static DiscoveryAuthMode[] values()
for (DiscoveryAuthMode c : DiscoveryAuthMode.values()) System.out.println(c);
public static DiscoveryAuthMode 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 Optional<DiscoveryAuthMode> fromStringInsensitive(String candidate)
Copyright © 2021. All rights reserved.