public static enum LogonEvent.LogonResult extends Enum<LogonEvent.LogonResult>
Enum Constant and Description |
---|
FAILED
Failed.
|
LOGOFF
Logoff needed.
|
NEEDED
Needed.
|
SUCCESS
Success.
|
Modifier and Type | Method and Description |
---|---|
static LogonEvent.LogonResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogonEvent.LogonResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogonEvent.LogonResult SUCCESS
public static final LogonEvent.LogonResult FAILED
public static final LogonEvent.LogonResult NEEDED
public static final LogonEvent.LogonResult LOGOFF
public static LogonEvent.LogonResult[] values()
for (LogonEvent.LogonResult c : LogonEvent.LogonResult.values()) System.out.println(c);
public static LogonEvent.LogonResult 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 © 2021 Hyland Software Germany GmbH. All rights reserved.