public enum AppClientElement extends Enum<AppClientElement>
Enum Constant and Description |
---|
CALLBACK_HANDLER |
MESSAGE_DESTINATION |
MODULE_NAME |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static AppClientElement |
forName(String elementName)
Returns the
AppClientElement corresponding to the passed elementName
If no such element exists then UNKNOWN is returned. |
String |
getLocalName()
Get the local name of this element.
|
static AppClientElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppClientElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppClientElement UNKNOWN
public static final AppClientElement CALLBACK_HANDLER
public static final AppClientElement MODULE_NAME
public static final AppClientElement MESSAGE_DESTINATION
public static AppClientElement[] values()
for (AppClientElement c : AppClientElement.values()) System.out.println(c);
public static AppClientElement 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 getLocalName()
public static AppClientElement forName(String elementName)
AppClientElement
corresponding to the passed elementName
If no such element exists then UNKNOWN
is returned.elementName
- Copyright © 2017 JBoss by Red Hat. All rights reserved.