|
Download Sources | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<NodeType>
com.liguorien.flex.generator.utils.NodeType
public enum NodeType
Used to define the way to access a property on a XML element.
| Enum Constant Summary | |
|---|---|
ATTRIBUTE
The property is an attribute. |
|
ELEMENT
The property is element. |
|
TEXT
The property is text element. |
|
| Method Summary | |
|---|---|
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final NodeType ATTRIBUTE
The property is an attribute. This is used for primitive types and String.
public static final NodeType ELEMENT
The property is element. This is used for Entity classes, Array, Map and Collection.
public static final NodeType TEXT
The property is text element. This is used for primitive types and String.
| Method Detail |
|---|
public static final NodeType[] values()
for(NodeType c : NodeType.values())
System.out.println(c);
public static NodeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
FlexGenerator | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||