public enum LogonMethod extends java.lang.Enum<LogonMethod>
| Enum Constant and Description |
|---|
Batch |
ClearText |
Interactive |
Network |
| Modifier and Type | Method and Description |
|---|---|
static LogonMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogonMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogonMethod Batch
public static final LogonMethod ClearText
public static final LogonMethod Interactive
public static final LogonMethod Network
public static LogonMethod[] values()
for (LogonMethod c : LogonMethod.values()) System.out.println(c);
public static LogonMethod 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 null