cz.zcu.fav.kiv.editor.config.constants
Enum TagDefinition.ParameterTags

java.lang.Object
  extended by java.lang.Enum<TagDefinition.ParameterTags>
      extended by cz.zcu.fav.kiv.editor.config.constants.TagDefinition.ParameterTags
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TagDefinition.ParameterTags>
Enclosing class:
TagDefinition

public static enum TagDefinition.ParameterTags
extends java.lang.Enum<TagDefinition.ParameterTags>

The enumerated list of elements used in files with XML parameter definitions.


Enum Constant Summary
ALT
           
DATATYPE
           
LIST_TYPE
           
NULL
           
REFMETA
           
REFMISCINFO
           
REFPURPOSE
           
REFSECTION
           
VALUE
           
XSL_ATTRIBUTE
           
XSL_PARAM
           
 
Field Summary
static java.lang.String CONDITION
           
static java.lang.String CONTAINS
           
static java.lang.String FO
           
static java.lang.String NAME
           
static java.lang.String OPEN
           
static java.lang.String OTHERCLASS
           
static java.lang.String SELECT
           
static java.lang.String TEST
           
 
Method Summary
static TagDefinition.ParameterTags getEnumValue(java.lang.String key)
          Returns predefined constant of element according to the element name.
 java.lang.String getValue()
           
 java.lang.String toString()
           
static TagDefinition.ParameterTags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TagDefinition.ParameterTags[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

REFSECTION

public static final TagDefinition.ParameterTags REFSECTION

REFPURPOSE

public static final TagDefinition.ParameterTags REFPURPOSE

REFMISCINFO

public static final TagDefinition.ParameterTags REFMISCINFO

REFMETA

public static final TagDefinition.ParameterTags REFMETA

DATATYPE

public static final TagDefinition.ParameterTags DATATYPE

VALUE

public static final TagDefinition.ParameterTags VALUE

ALT

public static final TagDefinition.ParameterTags ALT

LIST_TYPE

public static final TagDefinition.ParameterTags LIST_TYPE

NULL

public static final TagDefinition.ParameterTags NULL

XSL_PARAM

public static final TagDefinition.ParameterTags XSL_PARAM

XSL_ATTRIBUTE

public static final TagDefinition.ParameterTags XSL_ATTRIBUTE
Field Detail

OPEN

public static final java.lang.String OPEN
See Also:
Constant Field Values

OTHERCLASS

public static final java.lang.String OTHERCLASS
See Also:
Constant Field Values

FO

public static final java.lang.String FO
See Also:
Constant Field Values

CONDITION

public static final java.lang.String CONDITION
See Also:
Constant Field Values

SELECT

public static final java.lang.String SELECT
See Also:
Constant Field Values

TEST

public static final java.lang.String TEST
See Also:
Constant Field Values

CONTAINS

public static final java.lang.String CONTAINS
See Also:
Constant Field Values

NAME

public static final java.lang.String NAME
See Also:
Constant Field Values
Method Detail

values

public static TagDefinition.ParameterTags[] 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 (TagDefinition.ParameterTags c : TagDefinition.ParameterTags.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TagDefinition.ParameterTags 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 name
java.lang.NullPointerException - if the argument is null

getEnumValue

public static TagDefinition.ParameterTags getEnumValue(java.lang.String key)
Returns predefined constant of element according to the element name.

Parameters:
key - the name of element.
Returns:
a constant of element with defined name.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<TagDefinition.ParameterTags>

getValue

public java.lang.String getValue()