Uses of Enum Class
org.jdom2.AttributeType
Packages that use AttributeType
-
Uses of AttributeType in org.jdom2
Subclasses with type arguments of type AttributeType in org.jdom2Modifier and TypeClassDescriptionenumUse a simple enumeration for the Attribute TypesFields in org.jdom2 declared as AttributeTypeModifier and TypeFieldDescriptionstatic final AttributeTypeAttribute.CDATA_TYPEJDOM 1.x compatible reference toAttributeType.CDATAstatic final AttributeTypeAttribute.ENTITIES_TYPEJDOM 1.x compatible reference toAttributeType.ENTITIESstatic final AttributeTypeAttribute.ENTITY_TYPEJDOM 1.x compatible reference toAttributeType.ENTITYstatic final AttributeTypeAttribute.ENUMERATED_TYPEJDOM 1.x compatible reference toAttributeType.ENUMERATIONstatic final AttributeTypeAttribute.ID_TYPEJDOM 1.x compatible reference toAttributeType.IDstatic final AttributeTypeAttribute.IDREF_TYPEJDOM 1.x compatible reference toAttributeType.IDREFstatic final AttributeTypeAttribute.IDREFS_TYPEJDOM 1.x compatible reference toAttributeType.IDREFSstatic final AttributeTypeAttribute.NMTOKEN_TYPEJDOM 1.x compatible reference toAttributeType.NMTOKENstatic final AttributeTypeAttribute.NMTOKENS_TYPEJDOM 1.x compatible reference toAttributeType.NMTOKENSstatic final AttributeTypeAttribute.NOTATION_TYPEJDOM 1.x compatible reference toAttributeType.NOTATIONprotected AttributeTypeAttribute.typeThe type of theAttributestatic final AttributeTypeAttribute.UNDECLARED_TYPEJDOM 1.x compatible reference toAttributeType.UNDECLAREDMethods 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