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

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

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

The enumerated list of elements used in the configuration file with graphics figures - graphics.xml.


Enum Constant Summary
FIGURE
           
NULL
           
PARAMETER
           
 
Method Summary
static TagDefinition.FigureTags getValue(java.lang.String key)
          Returns predefined constant of element according to the element name.
static TagDefinition.FigureTags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TagDefinition.FigureTags[] 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

FIGURE

public static final TagDefinition.FigureTags FIGURE

PARAMETER

public static final TagDefinition.FigureTags PARAMETER

NULL

public static final TagDefinition.FigureTags NULL
Method Detail

values

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