public static enum Property.PropertyType extends Enum<Property.PropertyType>
Enum Constant and Description |
---|
ALT
An ordered array with some sort of criteria
|
BAG
An un-ordered array
|
COMPOSITE
Multiple child properties
|
SEQ
An ordered array
|
SIMPLE
A single value
|
STRUCTURE |
Modifier and Type | Method and Description |
---|---|
static Property.PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Property.PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Property.PropertyType SIMPLE
public static final Property.PropertyType STRUCTURE
public static final Property.PropertyType BAG
public static final Property.PropertyType SEQ
public static final Property.PropertyType ALT
public static final Property.PropertyType COMPOSITE
public static Property.PropertyType[] values()
for (Property.PropertyType c : Property.PropertyType.values()) System.out.println(c);
public static Property.PropertyType 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 © 2007–1969 The Apache Software Foundation. All rights reserved.