public enum XmlHk2BeanType extends Enum<XmlHk2BeanType>
Enum Constant and Description |
---|
DEFAULT_CHILD
A bean added due to a
DefaultChild
annotation |
NORMAL
A bean added via XML parsing or with one of the add methods on a bean
|
Modifier and Type | Method and Description |
---|---|
static XmlHk2BeanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlHk2BeanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlHk2BeanType NORMAL
public static final XmlHk2BeanType DEFAULT_CHILD
DefaultChild
annotationpublic static XmlHk2BeanType[] values()
for (XmlHk2BeanType c : XmlHk2BeanType.values()) System.out.println(c);
public static XmlHk2BeanType 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 © 2009–2015 Oracle Corporation. All rights reserved.