public static enum Database.AuthenticationMode extends Enum<Database.AuthenticationMode>
Enum Constant and Description |
---|
Authenticated
Designates providers which support authentication
through the JDBC interface.
|
Integrated
Designates providers which support authentication through
vendor or implementation specific means.
|
Unauthenticated
Designates providers which don't support
authentication.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Provides a human readable description of the authentication mode.
|
static Database.AuthenticationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Database.AuthenticationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Database.AuthenticationMode Unauthenticated
public static final Database.AuthenticationMode Authenticated
public static final Database.AuthenticationMode Integrated
public static Database.AuthenticationMode[] values()
for (Database.AuthenticationMode c : Database.AuthenticationMode.values()) System.out.println(c);
public static Database.AuthenticationMode 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 String getDescription()