|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Database.AuthenticationMode>
org.olap4j.metadata.Database.AuthenticationMode
public static enum Database.AuthenticationMode
Describes the supported authentication modes.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Database.AuthenticationMode Unauthenticated
public static final Database.AuthenticationMode Authenticated
public static final Database.AuthenticationMode Integrated
| Method Detail |
|---|
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 name
NullPointerException - if the argument is nullpublic String getDescription()
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||