public enum XmlAccessType extends Enum<XmlAccessType>
Enum Constant and Description |
---|
FIELD |
NONE |
PROPERTY |
PUBLIC_MEMBER |
Modifier and Type | Method and Description |
---|---|
static XmlAccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlAccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlAccessType FIELD
public static final XmlAccessType NONE
public static final XmlAccessType PROPERTY
public static final XmlAccessType PUBLIC_MEMBER
public static XmlAccessType[] values()
for (XmlAccessType c : XmlAccessType.values()) System.out.println(c);
public static XmlAccessType 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 © 2013. All rights reserved.