Enum Constant and Description |
---|
NONE
Specifies no authentication.
|
SASL
Specifies sasl authentication.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAuthType() |
static AuthType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthType NONE
public static final AuthType SASL
public static AuthType[] values()
for (AuthType c : AuthType.values()) System.out.println(c);
public static AuthType 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 nullpublic java.lang.String getAuthType()
Copyright © 2006-2009 Dustin Sallings, 2009-2012 Couchbase, Inc.