public enum BrokerAuthenticationMode extends Enum<BrokerAuthenticationMode>
| Enum Constant and Description |
|---|
GSSAPI |
NOTSET |
PLAIN |
SCRAMSHA256 |
SCRAMSHA512 |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static BrokerAuthenticationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BrokerAuthenticationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BrokerAuthenticationMode NOTSET
public static final BrokerAuthenticationMode GSSAPI
public static final BrokerAuthenticationMode PLAIN
public static final BrokerAuthenticationMode SCRAMSHA256
public static final BrokerAuthenticationMode SCRAMSHA512
public static BrokerAuthenticationMode[] values()
for (BrokerAuthenticationMode c : BrokerAuthenticationMode.values()) System.out.println(c);
public static BrokerAuthenticationMode 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 int getValue()
Copyright © 2020. All rights reserved.