public enum XMLAttributes extends Enum<XMLAttributes>
Modifier and Type | Method and Description |
---|---|
static XMLAttributes |
getFromXMLName(String xmlName)
Get the XMLAttributes enum corresponding to the given xml attribute name.
|
String |
getXMLName()
Return the XML tag name of the attribute as a String.
|
boolean |
matches(String xmlName)
Return true if the given XML name matches this XMLAttributes
|
String |
toString() |
static XMLAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLAttributes JOB_PRIORITY
public static final XMLAttributes JOB_PROJECT_NAME
public static final XMLAttributes JOB_TAGS
public static final XMLAttributes COMMON_CANCEL_JOB_ON_ERROR
public static final XMLAttributes COMMON_ON_TASK_ERROR
public static final XMLAttributes COMMON_MAX_NUMBER_OF_EXECUTION
public static final XMLAttributes COMMON_NAME
public static final XMLAttributes COMMON_RESTART_TASK_ON_ERROR
public static final XMLAttributes COMMON_TASK_RETRY_DELAY
public static final XMLAttributes COMMON_VALUE
public static final XMLAttributes VARIABLE_NAME
public static final XMLAttributes VARIABLE_VALUE
public static final XMLAttributes VARIABLE_MODEL
public static final XMLAttributes VARIABLE_JOB_INHERITED
public static final XMLAttributes VARIABLE_DESCRIPTION
public static final XMLAttributes VARIABLE_GROUP
public static final XMLAttributes VARIABLE_ADVANCED
public static final XMLAttributes VARIABLE_HIDDEN
public static final XMLAttributes TASK_CLASS_NAME
public static final XMLAttributes TASK_DEPENDS_REF
public static final XMLAttributes TASK_PRECIOUS_LOGS
public static final XMLAttributes TASK_PRECIOUS_RESULT
public static final XMLAttributes TASK_RUN_AS_ME
public static final XMLAttributes TASK_FORK
public static final XMLAttributes TASK_WALLTIME
public static final XMLAttributes TASK_COMMAND_VALUE
public static final XMLAttributes TASK_NB_NODES
public static final XMLAttributes TASK_PARAMETER_NAME
public static final XMLAttributes TASK_PARAMETER_VALUE
public static final XMLAttributes TASK_WORKDING_DIR
public static final XMLAttributes TOPOLOGY_THRESHOLD
public static final XMLAttributes SCRIPT_URL
public static final XMLAttributes FORK_JAVA_HOME
public static final XMLAttributes FLOW_BLOCK
public static final XMLAttributes FLOW_CONTINUATION
public static final XMLAttributes FLOW_ELSE
public static final XMLAttributes FLOW_TARGET
public static final XMLAttributes DS_ACCESS_MODE
public static final XMLAttributes DS_EXCLUDES
public static final XMLAttributes DS_INCLUDES
public static final XMLAttributes DS_URL
public static final XMLAttributes PATH
public static final XMLAttributes LANGUAGE
public static final XMLAttributes TYPE
public static XMLAttributes[] values()
for (XMLAttributes c : XMLAttributes.values()) System.out.println(c);
public static XMLAttributes valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getXMLName()
public static XMLAttributes getFromXMLName(String xmlName)
xmlName
- the XML attribute name as a stringIllegalArgumentException
- if the attribute name does not existpublic boolean matches(String xmlName)
xmlName
- the XML attribute name as a String.public String toString()
toString
in class Enum<XMLAttributes>