Package com.flower.docs.domain.tagclass
Enum TagValueType
- java.lang.Object
-
- java.lang.Enum<TagValueType>
-
- com.flower.docs.domain.tagclass.TagValueType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TagValueType>
public enum TagValueType extends java.lang.Enum<TagValueType>
The type of tag value <p>Java class for TagValueType. <p>The following schema fragment specifies the expected content contained within this class. <pre> <simpleType name="TagValueType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="STRING"/> <enumeration value="TEXT"/> <enumeration value="INT"/> <enumeration value="BOOLEAN"/> <enumeration value="DATE"/> <enumeration value="FLOAT"/> <enumeration value="CURRENCY"/> <enumeration value="CHOICELIST"/> <enumeration value="HIERARCHICAL"/> <enumeration value="CONDITIONAL"/> <enumeration value="FREELIST"/> <enumeration value="ICON"/> <enumeration value="USER"/> </restriction> </simpleType> </pre>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
CHOICELIST
CONDITIONAL
CURRENCY
DATE
FLOAT
FREELIST
HIERARCHICAL
ICON
INT
STRING
TEXT
USER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TagValueType
fromValue(java.lang.String v)
java.lang.String
value()
static TagValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TagValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final TagValueType STRING
-
TEXT
public static final TagValueType TEXT
-
INT
public static final TagValueType INT
-
BOOLEAN
public static final TagValueType BOOLEAN
-
DATE
public static final TagValueType DATE
-
FLOAT
public static final TagValueType FLOAT
-
CURRENCY
public static final TagValueType CURRENCY
-
CHOICELIST
public static final TagValueType CHOICELIST
-
HIERARCHICAL
public static final TagValueType HIERARCHICAL
-
CONDITIONAL
public static final TagValueType CONDITIONAL
-
FREELIST
public static final TagValueType FREELIST
-
ICON
public static final TagValueType ICON
-
USER
public static final TagValueType USER
-
-
Method Detail
-
values
public static TagValueType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TagValueType c : TagValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagValueType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static TagValueType fromValue(java.lang.String v)
-
-