Serializable, Comparable<PropertyValue.ValueType>public static enum PropertyValue.ValueType extends Enum<PropertyValue.ValueType>
| Enum Constant | Description |
|---|---|
ARRAY |
A multi valued property value, which contains unnamed child properties.
|
MAP |
A multi valued property value, which contains named child properties.
|
VALUE |
A simple value property.
|
| Modifier and Type | Method | Description |
|---|---|---|
static PropertyValue.ValueType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static PropertyValue.ValueType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyValue.ValueType MAP
public static final PropertyValue.ValueType ARRAY
public static final PropertyValue.ValueType VALUE
public static PropertyValue.ValueType[] values()
for (PropertyValue.ValueType c : PropertyValue.ValueType.values()) System.out.println(c);
public static PropertyValue.ValueType 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 © 2014–2019 Apache Software Foundation. All rights reserved.