Uses of Class
nu.xom.Attribute.Type
-
Packages that use Attribute.Type Package Description nu.xom nu.xomis the core package of XOM that contains all the basic classes representing the different kinds of nodes: elements, attributes, comments, text nodes, and so forth. -
-
Uses of Attribute.Type in nu.xom
Fields in nu.xom declared as Attribute.Type Modifier and Type Field Description static Attribute.TypeAttribute.Type. CDATAThe type of attributes declared to have type CDATA in the DTD.static Attribute.TypeAttribute.Type. ENTITIESThe type of attributes declared to have type ENTITIES in the DTD.static Attribute.TypeAttribute.Type. ENTITYThe type of attributes declared to have type ENTITY in the DTD.static Attribute.TypeAttribute.Type. ENUMERATIONThe type of attributes declared by an enumeration in the DTD.static Attribute.TypeAttribute.Type. IDThe type of attributes declared to have type ID in the DTD.static Attribute.TypeAttribute.Type. IDREFThe type of attributes declared to have type IDREF in the DTD.static Attribute.TypeAttribute.Type. IDREFSThe type of attributes declared to have type IDREFS in the DTD.static Attribute.TypeAttribute.Type. NMTOKENThe type of attributes declared to have type NMTOKEN in the DTD.static Attribute.TypeAttribute.Type. NMTOKENSThe type of attributes declared to have type NMTOKENS in the DTD.static Attribute.TypeAttribute.Type. NOTATIONThe type of attributes declared to have type NOTATION in the DTD.static Attribute.TypeAttribute.Type. UNDECLAREDThe type of attributes not declared in the DTD.Methods in nu.xom that return Attribute.Type Modifier and Type Method Description Attribute.TypeAttribute. getType()Returns the DTD type of this attribute.Methods in nu.xom with parameters of type Attribute.Type Modifier and Type Method Description NodesNodeFactory. makeAttribute(java.lang.String name, java.lang.String URI, java.lang.String value, Attribute.Type type)Returns a newNodesobject containing an attribute in the specified namespace with the specified name and type.voidAttribute. setType(Attribute.Type type)Sets the type of this attribute to one of the ten DTD types orType.UNDECLARED.Constructors in nu.xom with parameters of type Attribute.Type Constructor Description Attribute(java.lang.String name, java.lang.String URI, java.lang.String value, Attribute.Type type)Creates a new attribute in the specified namespace with the specified name, value, and type.Attribute(java.lang.String localName, java.lang.String value, Attribute.Type type)Creates a new attribute in no namespace with the specified name, value, and type.
-