public static enum XmlSequencer.AttributeScoping extends Enum<XmlSequencer.AttributeScoping>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
static XmlSequencer.AttributeScoping |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlSequencer.AttributeScoping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlSequencer.AttributeScoping USE_DEFAULT_NAMESPACE
public static final XmlSequencer.AttributeScoping INHERIT_ELEMENT_NAMESPACE
public static XmlSequencer.AttributeScoping[] values()
for (XmlSequencer.AttributeScoping c : XmlSequencer.AttributeScoping.values()) System.out.println(c);
public static XmlSequencer.AttributeScoping 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 nullCopyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.