public enum ApplicationPageMode extends Enum<ApplicationPageMode>
Enum Constant and Description |
---|
LOGIN
The login.
|
LOGOUT
The logout.
|
REGISTER
The register.
|
Modifier and Type | Method and Description |
---|---|
static ApplicationPageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationPageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationPageMode REGISTER
public static final ApplicationPageMode LOGIN
public static final ApplicationPageMode LOGOUT
public static ApplicationPageMode[] values()
for (ApplicationPageMode c : ApplicationPageMode.values()) System.out.println(c);
public static ApplicationPageMode 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 © 2008–2017 www.hack23.com. All rights reserved.