public enum ConnectorLoginMode extends Enum<ConnectorLoginMode>
| Enum Constant and Description | 
|---|
GLOBAL  | 
LOGIN_NOT_REQUIRED  | 
USER  | 
| Modifier and Type | Method and Description | 
|---|---|
static ConnectorLoginMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ConnectorLoginMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ConnectorLoginMode GLOBAL
public static final ConnectorLoginMode LOGIN_NOT_REQUIRED
public static final ConnectorLoginMode USER
public static ConnectorLoginMode[] values()
for (ConnectorLoginMode c : ConnectorLoginMode.values()) System.out.println(c);
public static ConnectorLoginMode 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 © 2015. All rights reserved.