public enum ApplicationEventGroup extends Enum<ApplicationEventGroup>
Java class for ApplicationEventGroup.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ApplicationEventGroup"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Admin"/> <enumeration value="User"/> <enumeration value="Application"/> <enumeration value="Error"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ADMIN |
APPLICATION |
ERROR |
USER |
Modifier and Type | Method and Description |
---|---|
static ApplicationEventGroup |
fromValue(String v) |
String |
value() |
static ApplicationEventGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationEventGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationEventGroup ADMIN
public static final ApplicationEventGroup USER
public static final ApplicationEventGroup APPLICATION
public static final ApplicationEventGroup ERROR
public static ApplicationEventGroup[] values()
for (ApplicationEventGroup c : ApplicationEventGroup.values()) System.out.println(c);
public static ApplicationEventGroup 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 nullpublic String value()
public static ApplicationEventGroup fromValue(String v)
Copyright © 2010–2017 www.hack23.com. All rights reserved.