Uses of Enum Class
org.jdom2.AttributeType
Packages that use AttributeType
-
Uses of AttributeType in org.jdom2
Fields in org.jdom2 declared as AttributeTypeModifier and TypeFieldDescriptionstatic final AttributeType
Attribute.CDATA_TYPE
JDOM 1.x compatible reference toCDATA
static final AttributeType
Attribute.ENTITIES_TYPE
JDOM 1.x compatible reference toENTITIES
static final AttributeType
Attribute.ENTITY_TYPE
JDOM 1.x compatible reference toENTITY
static final AttributeType
Attribute.ENUMERATED_TYPE
JDOM 1.x compatible reference toENUMERATION
static final AttributeType
Attribute.ID_TYPE
JDOM 1.x compatible reference toID
static final AttributeType
Attribute.IDREF_TYPE
JDOM 1.x compatible reference toIDREF
static final AttributeType
Attribute.IDREFS_TYPE
JDOM 1.x compatible reference toIDREFS
static final AttributeType
Attribute.NMTOKEN_TYPE
JDOM 1.x compatible reference toNMTOKEN
static final AttributeType
Attribute.NMTOKENS_TYPE
JDOM 1.x compatible reference toNMTOKENS
static final AttributeType
Attribute.NOTATION_TYPE
JDOM 1.x compatible reference toNOTATION
protected AttributeType
Attribute.type
The type of theAttribute
static final AttributeType
Attribute.UNDECLARED_TYPE
JDOM 1.x compatible reference toUNDECLARED
Methods in org.jdom2 that return AttributeTypeModifier and TypeMethodDescriptionstatic final AttributeType
AttributeType.byIndex
(int index) Deprecated.Use normal Enums instead of int'sAttribute.getAttributeType()
This will return the declared type of thisAttribute
.static final AttributeType
AttributeType.getAttributeType
(String typeName) Returns the the JDOM AttributeType value from the SAX 2.0 attribute type string provided by the parser.static AttributeType
Returns the enum constant of this class with the specified name.static AttributeType[]
AttributeType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.jdom2 with parameters of type AttributeTypeModifier and TypeMethodDescriptionDefaultJDOMFactory.attribute
(String name, String value, AttributeType type) DefaultJDOMFactory.attribute
(String name, String value, AttributeType type, Namespace namespace) JDOMFactory.attribute
(String name, String value, AttributeType type) This will create a newAttribute
with the specified (local) name, value and type, and does not place the attribute in a
.Namespace
JDOMFactory.attribute
(String name, String value, AttributeType type, Namespace namespace) This will create a newAttribute
with the specified (local) name, value, and type, and in the provided
.Namespace
SlimJDOMFactory.attribute
(String name, String value, AttributeType type) SlimJDOMFactory.attribute
(String name, String value, AttributeType type, Namespace namespace) UncheckedJDOMFactory.attribute
(String name, String value, AttributeType type) UncheckedJDOMFactory.attribute
(String name, String value, AttributeType type, Namespace namespace) Attribute.setAttributeType
(AttributeType type) This will set the type of theAttribute
.Constructors in org.jdom2 with parameters of type AttributeTypeModifierConstructorDescriptionAttribute
(String name, String value, AttributeType type) This will create a newAttribute
with the specified (local) name, value and type, and does not place the attribute in a
.Namespace
Attribute
(String name, String value, AttributeType type, Namespace namespace) This will create a newAttribute
with the specified (local) name, value, and type, and in the provided
.Namespace