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

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

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

The enumerated list of elements used in the configuration file with layout of parameters and attribute-sets - config.xml.


Enum Constant Summary
ATTRIBUTE_SET
           
GROUP
           
NULL
           
PARAMETER
           
SECTION
           
SUBSECTION
           
 
Method Summary
static TagDefinition.ConfigTags getValue(java.lang.String key)
          Returns predefined constant of element according to the element name.
static TagDefinition.ConfigTags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TagDefinition.ConfigTags[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SECTION

public static final TagDefinition.ConfigTags SECTION

SUBSECTION

public static final TagDefinition.ConfigTags SUBSECTION

GROUP

public static final TagDefinition.ConfigTags GROUP

PARAMETER

public static final TagDefinition.ConfigTags PARAMETER

ATTRIBUTE_SET

public static final TagDefinition.ConfigTags ATTRIBUTE_SET

NULL

public static final TagDefinition.ConfigTags NULL
Method Detail

values

public static TagDefinition.ConfigTags[] 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.ConfigTags c : TagDefinition.ConfigTags.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.ConfigTags 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

getValue

public static TagDefinition.ConfigTags getValue(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.