public static enum DatabaseClientFactory.Authentication extends Enum<DatabaseClientFactory.Authentication>
Enum Constant and Description |
---|
BASIC
Minimal security unless used with SSL.
|
DIGEST
Moderate security without SSL.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseClientFactory.Authentication |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseClientFactory.Authentication |
valueOfUncased(String name)
Returns the enumerated value for the case-insensitive name.
|
static DatabaseClientFactory.Authentication[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseClientFactory.Authentication BASIC
public static final DatabaseClientFactory.Authentication DIGEST
public static DatabaseClientFactory.Authentication[] values()
for (DatabaseClientFactory.Authentication c : DatabaseClientFactory.Authentication.values()) System.out.println(c);
public static DatabaseClientFactory.Authentication 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 static DatabaseClientFactory.Authentication valueOfUncased(String name)
name
- the name of the enumerated valueCopyright © 2013-2016 MarkLogic Corporation.