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.


Variable Index

 o CDATA
AttType - StringType - CDATA
 o DEFAULT
Attribute presence - Default
 o ENTITIES
AttType - TokenizedType - Entities
 o ENTITY
AttType - TokenizedType - Entity
 o ENUMERATION
AttType - EnumeratedType - Enumeration
 o FIXED
Attribute presence - Fixed
 o ID
AttType - TokenizedType - ID
 o IDREF
AttType - TokenizedType - ID reference
 o IDREFS
AttType - TokenizedType - ID references
 o IMPLIED
Attribute presence - Implied
 o NMTOKEN
AttType - TokenizedType - Name token
 o NMTOKENS
AttType - TokenizedType - Name tokens
 o NOTATION
AttType - EnumeratedType - Notation
 o REQUIRED
Attribute presence - Required

Method Index

 o getDefaultValue()
Gets attribute default value
 o getName()
Gets attribute name
 o getPresence()
Gets attribute presence
 o getType()
Gets attribute type
 o getValues()
Gets attribute values

Variables

 o CDATA
 public static final int CDATA
AttType - StringType - CDATA

 o ID
 public static final int ID
AttType - TokenizedType - ID

 o IDREF
 public static final int IDREF
AttType - TokenizedType - ID reference

 o IDREFS
 public static final int IDREFS
AttType - TokenizedType - ID references

 o ENTITY
 public static final int ENTITY
AttType - TokenizedType - Entity

 o ENTITIES
 public static final int ENTITIES
AttType - TokenizedType - Entities

 o NMTOKEN
 public static final int NMTOKEN
AttType - TokenizedType - Name token

 o NMTOKENS
 public static final int NMTOKENS
AttType - TokenizedType - Name tokens

 o NOTATION
 public static final int NOTATION
AttType - EnumeratedType - Notation

 o ENUMERATION
 public static final int ENUMERATION
AttType - EnumeratedType - Enumeration

 o DEFAULT
 public static final int DEFAULT
Attribute presence - Default

 o REQUIRED
 public static final int REQUIRED
Attribute presence - Required

 o IMPLIED
 public static final int IMPLIED
Attribute presence - Implied

 o FIXED
 public static final int FIXED
Attribute presence - Fixed

Methods

 o getName
 public String getName()
Gets attribute name

Returns:
The name of the attribute
 o getType
 public byte getType()
Gets attribute type

Returns:
The type of the attribute
 o getPresence
 public byte getPresence()
Gets attribute presence

Returns:
The presence of the attribute
 o getDefaultValue
 public String getDefaultValue()
Gets attribute default value

Returns:
The default value of the attribute
 o 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