Uses of Class
org.jdom2.AttributeType
-
Packages that use AttributeType Package Description org.jdom2 Classes representing the components of an XML document. -
-
Uses of AttributeType in org.jdom2
Fields in org.jdom2 declared as AttributeType Modifier and Type Field Description static AttributeType
Attribute. CDATA_TYPE
JDOM 1.x compatible reference toCDATA
static AttributeType
Attribute. ENTITIES_TYPE
JDOM 1.x compatible reference toENTITIES
static AttributeType
Attribute. ENTITY_TYPE
JDOM 1.x compatible reference toENTITY
static AttributeType
Attribute. ENUMERATED_TYPE
JDOM 1.x compatible reference toENUMERATION
static AttributeType
Attribute. ID_TYPE
JDOM 1.x compatible reference toID
static AttributeType
Attribute. IDREF_TYPE
JDOM 1.x compatible reference toIDREF
static AttributeType
Attribute. IDREFS_TYPE
JDOM 1.x compatible reference toIDREFS
static AttributeType
Attribute. NMTOKEN_TYPE
JDOM 1.x compatible reference toNMTOKEN
static AttributeType
Attribute. NMTOKENS_TYPE
JDOM 1.x compatible reference toNMTOKENS
static AttributeType
Attribute. NOTATION_TYPE
JDOM 1.x compatible reference toNOTATION
protected AttributeType
Attribute. type
The type of theAttribute
static AttributeType
Attribute. UNDECLARED_TYPE
JDOM 1.x compatible reference toUNDECLARED
Methods in org.jdom2 that return AttributeType Modifier and Type Method Description static AttributeType
AttributeType. byIndex(int index)
Deprecated.Use normal Enums instead of int'sAttributeType
Attribute. getAttributeType()
This will return the declared type of thisAttribute
.static AttributeType
AttributeType. getAttributeType(java.lang.String typeName)
Returns the the JDOM AttributeType value from the SAX 2.0 attribute type string provided by the parser.static AttributeType
AttributeType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AttributeType[]
AttributeType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jdom2 with parameters of type AttributeType Modifier and Type Method Description Attribute
DefaultJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)
Attribute
DefaultJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)
Attribute
JDOMFactory. attribute(java.lang.String name, java.lang.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
JDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)
This will create a newAttribute
with the specified (local) name, value, and type, and in the provided
.Namespace
Attribute
SlimJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)
Attribute
SlimJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)
Attribute
UncheckedJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)
Attribute
UncheckedJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)
Attribute
Attribute. setAttributeType(AttributeType type)
This will set the type of theAttribute
.Constructors in org.jdom2 with parameters of type AttributeType Constructor Description Attribute(java.lang.String name, java.lang.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(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)
This will create a newAttribute
with the specified (local) name, value, and type, and in the provided
.Namespace
-