public static enum ClientSession.Authentication extends Enum<ClientSession.Authentication>
| Enum Constant and Description | 
|---|
NONE  | 
NTLM  | 
OAUTH_BEARER  | 
STANDARD  | 
| Modifier and Type | Method and Description | 
|---|---|
static ClientSession.Authentication | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ClientSession.Authentication[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ClientSession.Authentication NONE
public static final ClientSession.Authentication STANDARD
public static final ClientSession.Authentication NTLM
public static final ClientSession.Authentication OAUTH_BEARER
public static ClientSession.Authentication[] values()
for (ClientSession.Authentication c : ClientSession.Authentication.values()) System.out.println(c);
public static ClientSession.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 nullCopyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.