| java.lang.Object org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCAutomaticQueryMetaData
JDBCAutomaticQueryMetaData | final public class JDBCAutomaticQueryMetaData implements JDBCQueryMetaData(Code) | | This immutable class contains information about an automatically generated
query. This class is a place holder used to make an automaticlly generated
query look more like a user specified query. This class only contains a
referance to the method used to invoke this query.
author: Dain Sundstrom author: Sebastien Alborini version: $Revision: 57209 $ |
JDBCAutomaticQueryMetaData | public JDBCAutomaticQueryMetaData(Method method, JDBCReadAheadMetaData readAhead, Class qlCompiler, boolean lazyResultSetLoading)(Code) | | Constructs a JDBCAutomaticQueryMetaData which is invoked by the specified
method.
Parameters: method - the method which invokes this query |
equals | public boolean equals(Object o)(Code) | | Compares this JDBCAutomaticQueryMetaData against the specified object. Returns
true if the objects are the same. Two JDBCAutomaticQueryMetaData are the same
if they are both invoked by the same method.
Parameters: o - the reference object with which to compare true if this object is the same as the object argument; false otherwise |
getQLCompilerClass | public Class getQLCompilerClass()(Code) | | |
getReadAhead | public JDBCReadAheadMetaData getReadAhead()(Code) | | Gets the read ahead metadata for the query.
the read ahead metadata for the query. |
hashCode | public int hashCode()(Code) | | Returns a hashcode for this JDBCAutomaticQueryMetaData. The hashcode is computed
by the method which invokes this query.
a hash code value for this object |
isLazyResultSetLoading | public boolean isLazyResultSetLoading()(Code) | | |
isResultTypeMappingLocal | public boolean isResultTypeMappingLocal()(Code) | | |
toString | public String toString()(Code) | | Returns a string describing this JDBCAutomaticQueryMetaData. The exact details
of the representation are unspecified and subject to change, but the following
may be regarded as typical:
"[JDBCAutomaticQueryMetaData: method=public org.foo.User findByName(java.lang.String)]"
a string representation of the object |
|
|