|
|||||||||
| Home >> All >> org >> apache >> derby >> iapi >> store >> access >> [ conglomerate overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.derby.iapi.store.access.conglomerate
Interface MethodFactory

- All Superinterfaces:
- org.apache.derby.iapi.services.monitor.ModuleSupportable
- All Known Subinterfaces:
- ConglomerateFactory, SortFactory
- public interface MethodFactory
- extends org.apache.derby.iapi.services.monitor.ModuleSupportable
The interface of all access method factories. Specific method factories (sorts, conglomerates), extend this interface.
| Field Summary | |
static java.lang.String |
MODULE
Used to identify this interface when finding it with the Monitor. |
| Method Summary | |
java.util.Properties |
defaultProperties()
Return the default properties for this access method. |
org.apache.derby.catalog.UUID |
primaryFormat()
Return the primary format that this access method supports. |
java.lang.String |
primaryImplementationType()
Return the primary implementation type for this access method. |
boolean |
supportsFormat(org.apache.derby.catalog.UUID formatid)
Return whether this access method supports the format supplied in the argument. |
boolean |
supportsImplementation(java.lang.String implementationId)
Return whether this access method implements the implementation type given in the argument string. |
| Methods inherited from interface org.apache.derby.iapi.services.monitor.ModuleSupportable |
canSupport |
| Field Detail |
MODULE
public static final java.lang.String MODULE
- Used to identify this interface when finding it with the Monitor.
- See Also:
- Constant Field Values
| Method Detail |
defaultProperties
public java.util.Properties defaultProperties()
- Return the default properties for this access method.
supportsImplementation
public boolean supportsImplementation(java.lang.String implementationId)
- Return whether this access method implements the implementation
type given in the argument string.
primaryImplementationType
public java.lang.String primaryImplementationType()
- Return the primary implementation type for this access method.
Although an access method may implement more than one implementation
type, this is the expected one. The access manager will put the
primary implementation type in a hash table for fast access.
supportsFormat
public boolean supportsFormat(org.apache.derby.catalog.UUID formatid)
- Return whether this access method supports the format supplied in
the argument.
primaryFormat
public org.apache.derby.catalog.UUID primaryFormat()
- Return the primary format that this access method supports.
Although an access method may support more than one format, this
is the usual one. the access manager will put the primary format
in a hash table for fast access to the appropriate method.
|
|||||||||
| Home >> All >> org >> apache >> derby >> iapi >> store >> access >> [ conglomerate overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC