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 AttributeTypeAttribute. CDATA_TYPEJDOM 1.x compatible reference toCDATAstatic AttributeTypeAttribute. ENTITIES_TYPEJDOM 1.x compatible reference toENTITIESstatic AttributeTypeAttribute. ENTITY_TYPEJDOM 1.x compatible reference toENTITYstatic AttributeTypeAttribute. ENUMERATED_TYPEJDOM 1.x compatible reference toENUMERATIONstatic AttributeTypeAttribute. ID_TYPEJDOM 1.x compatible reference toIDstatic AttributeTypeAttribute. IDREF_TYPEJDOM 1.x compatible reference toIDREFstatic AttributeTypeAttribute. IDREFS_TYPEJDOM 1.x compatible reference toIDREFSstatic AttributeTypeAttribute. NMTOKEN_TYPEJDOM 1.x compatible reference toNMTOKENstatic AttributeTypeAttribute. NMTOKENS_TYPEJDOM 1.x compatible reference toNMTOKENSstatic AttributeTypeAttribute. NOTATION_TYPEJDOM 1.x compatible reference toNOTATIONprotected AttributeTypeAttribute. typeThe type of theAttributestatic AttributeTypeAttribute. UNDECLARED_TYPEJDOM 1.x compatible reference toUNDECLAREDMethods in org.jdom2 that return AttributeType Modifier and Type Method Description static AttributeTypeAttributeType. byIndex(int index)Deprecated.Use normal Enums instead of int'sAttributeTypeAttribute. getAttributeType()This will return the declared type of thisAttribute.static AttributeTypeAttributeType. getAttributeType(java.lang.String typeName)Returns the the JDOM AttributeType value from the SAX 2.0 attribute type string provided by the parser.static AttributeTypeAttributeType. 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 AttributeDefaultJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)AttributeDefaultJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)AttributeJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)This will create a newAttributewith the specified (local) name, value and type, and does not place the attribute in a.NamespaceAttributeJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)This will create a newAttributewith the specified (local) name, value, and type, and in the provided.NamespaceAttributeSlimJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)AttributeSlimJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)AttributeUncheckedJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type)AttributeUncheckedJDOMFactory. attribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)AttributeAttribute. 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 newAttributewith the specified (local) name, value and type, and does not place the attribute in a.NamespaceAttribute(java.lang.String name, java.lang.String value, AttributeType type, Namespace namespace)This will create a newAttributewith the specified (local) name, value, and type, and in the provided.Namespace
-