All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface com.jclark.xml.parse.AttributeDefinition
  -  public interface AttributeDefinition
Information about the definition of an Attribute.
    -  See Also:
    
-  getAttributeDefinition
   
  -   CDATA CDATA
-  
  
-   ENTITIES ENTITIES
-  
  
-   ENTITY ENTITY
-  
  
-   ENUM ENUM
-  
  
-   ID ID
-  
  
-   IDREF IDREF
-  
  
-   IDREFS IDREFS
-  
  
-   NMTOKEN NMTOKEN
-  
  
-   NMTOKENS NMTOKENS
-  
  
-   NOTATION NOTATION
-  
  
-   UNDECLARED UNDECLARED
-  
   
  -   allowedValues() allowedValues()
-   Returns an enumeration over the allowed values
 if this was declared as an enumerated type, and null otherwise.
  
-   getDefaultUnnormalizedValue() getDefaultUnnormalizedValue()
-   Returns the unnormalized default value
 or null if no default value was specified.
  
-   getDefaultValue() getDefaultValue()
-   Returns the normalized default value
 or null if no default value was specified.
  
-   getType() getType()
-   Returns an integer corresponding to the type of the attribute.
  
-   isRequired() isRequired()
-   Returns true if the attribute was #REQUIRED or #FIXED.
   
 UNDECLARED
UNDECLARED
 public static final byte UNDECLARED
 CDATA
CDATA
 public static final byte CDATA
 ID
ID
 public static final byte ID
 IDREF
IDREF
 public static final byte IDREF
 IDREFS
IDREFS
 public static final byte IDREFS
 ENTITY
ENTITY
 public static final byte ENTITY
 ENTITIES
ENTITIES
 public static final byte ENTITIES
 NMTOKEN
NMTOKEN
 public static final byte NMTOKEN
 NMTOKENS
NMTOKENS
 public static final byte NMTOKENS
 ENUM
ENUM
 public static final byte ENUM
 NOTATION
NOTATION
 public static final byte NOTATION
   
 getDefaultValue
getDefaultValue
 public abstract String getDefaultValue()
  -  Returns the normalized default value
 or null if no default value was specified.
 
 getDefaultUnnormalizedValue
getDefaultUnnormalizedValue
 public abstract String getDefaultUnnormalizedValue()
  -  Returns the unnormalized default value
 or null if no default value was specified.
 
 isRequired
isRequired
 public abstract boolean isRequired()
  -  Returns true if the attribute was #REQUIRED or #FIXED.
 
 getType
getType
 public abstract byte getType()
  -  Returns an integer corresponding to the type of the attribute.
 
 allowedValues
allowedValues
 public abstract Enumeration allowedValues()
  -  Returns an enumeration over the allowed values
 if this was declared as an enumerated type, and null otherwise.
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index