edu.uky.rch.ept.data
Interface IDataAccessMethods
- All Superinterfaces:
- ICollectionAccessMethods, IConcurrentXMLAccessMethods, IDTDAccessMethods, IGenericResourceAccessMethods, IImageAccessMethods, ITextAccessMethods, IXMLAccessMethods
- All Known Subinterfaces:
- IDataSourceDriver
- All Known Implementing Classes:
- DataFactory, DataSourceDriver, Project, Repository
- public interface IDataAccessMethods
- extends ITextAccessMethods, IDTDAccessMethods, IImageAccessMethods, ICollectionAccessMethods, IXMLAccessMethods, IConcurrentXMLAccessMethods, IGenericResourceAccessMethods
This interface defines constants that are used in the various data access methods.
All the methods throw the following exceptions:
- NullAddressException - if the address specified is null
- MalformedAddressException - if the address specified is not a proper URI
- UnknownProtocolException - if there is no driver registered for the protocol specified in the address
- IOException - if a low level IO error occurs during processing
- Author:
- Sandeep Bodapati
|
Field Summary |
static int |
EOF
|
static short |
RT_DOCUMENT
Specifies the return type as Document |
static short |
RT_NODELIST
Specifies the return type as a List of Nodes |
static short |
RT_STRINGS
Specifies the return type as an array of Strings |
EOF
public static final int EOF
- See Also:
- Constant Field Values
RT_DOCUMENT
public static final short RT_DOCUMENT
- Specifies the return type as Document
- See Also:
- Constant Field Values
RT_NODELIST
public static final short RT_NODELIST
- Specifies the return type as a List of Nodes
- See Also:
- Constant Field Values
RT_STRINGS
public static final short RT_STRINGS
- Specifies the return type as an array of Strings
- See Also:
- Constant Field Values