public enum AuthenticationMechanism extends java.lang.Enum<AuthenticationMechanism>
| Enum Constant and Description |
|---|
EXTERNAL
Authentication mechanism corresponding to
DefaultSaslConfig.EXTERNAL |
PLAIN
Authentication mechanism corresponding to
DefaultSaslConfig.PLAIN |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationMechanism |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationMechanism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationMechanism PLAIN
DefaultSaslConfig.PLAINpublic static final AuthenticationMechanism EXTERNAL
DefaultSaslConfig.EXTERNALpublic static AuthenticationMechanism[] values()
for (AuthenticationMechanism c : AuthenticationMechanism.values()) System.out.println(c);
public static AuthenticationMechanism 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 © 2023. All rights reserved.