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