public enum AuthenticationRequestType extends java.lang.Enum<AuthenticationRequestType>
| Enum Constant and Description |
|---|
CLEARTEXT_PASSWORD |
GSS |
MD5_PASSWORD |
SASL |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationRequestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationRequestType CLEARTEXT_PASSWORD
public static final AuthenticationRequestType GSS
public static final AuthenticationRequestType MD5_PASSWORD
public static final AuthenticationRequestType SASL
public static AuthenticationRequestType[] values()
for (AuthenticationRequestType c : AuthenticationRequestType.values()) System.out.println(c);
public static AuthenticationRequestType 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 © 2025 PostgreSQL Global Development Group. All rights reserved.