org.efaps.ui.xml
Enum TAG
java.lang.Object
java.lang.Enum<TAG>
org.efaps.ui.xml.TAG
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TAG>
public enum TAG
- extends java.lang.Enum<TAG>
This enum contains the tags wich will be used for creating a xml-Document.
- Version:
- $Id: TAG.java 3447 2009-11-29 22:46:39Z tim.moxter $
- Author:
- jmox
|
Field Summary |
java.lang.String |
value
|
|
Method Summary |
static TAG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TAG[] |
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 |
FORM
public static final TAG FORM
FORM_CELL
public static final TAG FORM_CELL
FORM_ROW
public static final TAG FORM_ROW
HEADING
public static final TAG HEADING
LABEL
public static final TAG LABEL
ROOT
public static final TAG ROOT
TABLE
public static final TAG TABLE
TABLE_BODY
public static final TAG TABLE_BODY
TABLE_CELL
public static final TAG TABLE_CELL
TABLE_HEADER
public static final TAG TABLE_HEADER
TABLE_ROW
public static final TAG TABLE_ROW
TITLE
public static final TAG TITLE
TIMESTAMP
public static final TAG TIMESTAMP
VALUE
public static final TAG VALUE
value
public java.lang.String value
values
public static TAG[] 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 (TAG c : TAG.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TAG 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
Copyright © 2003-2010 The eFaps Team. All Rights Reserved.