public enum ParamValueType extends java.lang.Enum<ParamValueType>
<param> tag.Param| Enum Constant and Description |
|---|
DATA
The associated value is plain data.
|
REF
The associated value is reference by an URI.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getType()
Retrieves the name of this value type.
|
static ParamValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamValueType DATA
public static final ParamValueType REF
public static ParamValueType[] values()
for (ParamValueType c : ParamValueType.values()) System.out.println(c);
public static ParamValueType 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 namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getType()