All Packages Class Hierarchy This Package Previous Next Index
Class oracle.xml.parser.AttrDecl
java.lang.Object
|
+----oracle.xml.parser.XMLNode
|
+----oracle.xml.parser.AttrDecl
- public class AttrDecl
- extends XMLNode
- implements Serializable
This class hold information about each attribute declared in an attribute
list in the Document Type Definition.
-
CDATA
- AttType - StringType - CDATA
-
DEFAULT
- Attribute presence - Default
-
ENTITIES
- AttType - TokenizedType - Entities
-
ENTITY
- AttType - TokenizedType - Entity
-
ENUMERATION
- AttType - EnumeratedType - Enumeration
-
FIXED
- Attribute presence - Fixed
-
ID
- AttType - TokenizedType - ID
-
IDREF
- AttType - TokenizedType - ID reference
-
IDREFS
- AttType - TokenizedType - ID references
-
IMPLIED
- Attribute presence - Implied
-
NMTOKEN
- AttType - TokenizedType - Name token
-
NMTOKENS
- AttType - TokenizedType - Name tokens
-
NOTATION
- AttType - EnumeratedType - Notation
-
REQUIRED
- Attribute presence - Required
-
getDefaultValue()
- Gets attribute default value
-
getName()
- Gets attribute name
-
getPresence()
- Gets attribute presence
-
getType()
- Gets attribute type
-
getValues()
- Gets attribute values
CDATA
public static final int CDATA
- AttType - StringType - CDATA
ID
public static final int ID
- AttType - TokenizedType - ID
IDREF
public static final int IDREF
- AttType - TokenizedType - ID reference
IDREFS
public static final int IDREFS
- AttType - TokenizedType - ID references
ENTITY
public static final int ENTITY
- AttType - TokenizedType - Entity
ENTITIES
public static final int ENTITIES
- AttType - TokenizedType - Entities
NMTOKEN
public static final int NMTOKEN
- AttType - TokenizedType - Name token
NMTOKENS
public static final int NMTOKENS
- AttType - TokenizedType - Name tokens
NOTATION
public static final int NOTATION
- AttType - EnumeratedType - Notation
ENUMERATION
public static final int ENUMERATION
- AttType - EnumeratedType - Enumeration
DEFAULT
public static final int DEFAULT
- Attribute presence - Default
REQUIRED
public static final int REQUIRED
- Attribute presence - Required
IMPLIED
public static final int IMPLIED
- Attribute presence - Implied
FIXED
public static final int FIXED
- Attribute presence - Fixed
getName
public String getName()
- Gets attribute name
- Returns:
- The name of the attribute
getType
public byte getType()
- Gets attribute type
- Returns:
- The type of the attribute
getPresence
public byte getPresence()
- Gets attribute presence
- Returns:
- The presence of the attribute
getDefaultValue
public String getDefaultValue()
- Gets attribute default value
- Returns:
- The default value of the attribute
getValues
public Vector getValues()
- Gets attribute values
- Returns:
- The values of the attribute as an
Enumeration
All Packages Class Hierarchy This Package Previous Next Index