org.modeshape.graph.xml
Enum XmlHandler.AttributeScoping

java.lang.Object
  extended by java.lang.Enum<XmlHandler.AttributeScoping>
      extended by org.modeshape.graph.xml.XmlHandler.AttributeScoping
All Implemented Interfaces:
Serializable, Comparable<XmlHandler.AttributeScoping>
Enclosing class:
XmlHandler

public static enum XmlHandler.AttributeScoping
extends Enum<XmlHandler.AttributeScoping>

The choices for how attributes that have no namespace prefix should be assigned a namespace.

Author:
Randall Hauch

Enum Constant Summary
INHERIT_ELEMENT_NAMESPACE
          The attribute's namespace is the same namespace as the containing element
USE_DEFAULT_NAMESPACE
          The attribute's namespace is the default namespace
 
Method Summary
static XmlHandler.AttributeScoping valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XmlHandler.AttributeScoping[] 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

USE_DEFAULT_NAMESPACE

public static final XmlHandler.AttributeScoping USE_DEFAULT_NAMESPACE
The attribute's namespace is the default namespace


INHERIT_ELEMENT_NAMESPACE

public static final XmlHandler.AttributeScoping INHERIT_ELEMENT_NAMESPACE
The attribute's namespace is the same namespace as the containing element

Method Detail

values

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

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

valueOf

public static XmlHandler.AttributeScoping valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.