Package org.apache.derby.impl.sql
Class CursorInfo
- java.lang.Object
-
- org.apache.derby.impl.sql.CursorInfo
-
- All Implemented Interfaces:
java.io.Externalizable,java.io.Serializable,Formatable,TypedFormat
public class CursorInfo extends java.lang.Object implements Formatable
A basic holder for information about cursors for execution.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ExecCursorTableReferencetargetTableThis class implements Formatable.(package private) java.util.List<java.lang.String>updateColumns(package private) intupdateMode
-
Constructor Summary
Constructors Constructor Description CursorInfo()Niladic constructor for FormatableCursorInfo(int updateMode, ExecCursorTableReference targetTable, java.util.List<java.lang.String> updateColumns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetTypeFormatId()Get the formatID which corresponds to this class.voidreadExternal(java.io.ObjectInput in)Read this object from a stream of stored objects.java.lang.StringtoString()voidwriteExternal(java.io.ObjectOutput out)Write this object out
-
-
-
Field Detail
-
targetTable
ExecCursorTableReference targetTable
This class implements Formatable. That means that it can write itself to and from a formatted stream. If you add more fields to this class, make sure that you also write/read them with the writeExternal()/readExternal() methods. If, inbetween releases, you add more fields to this class, then you should bump the version number emitted by the getTypeFormatId() method.
-
updateColumns
java.util.List<java.lang.String> updateColumns
-
updateMode
int updateMode
-
-
Constructor Detail
-
CursorInfo
public CursorInfo()
Niladic constructor for Formatable
-
CursorInfo
public CursorInfo(int updateMode, ExecCursorTableReference targetTable, java.util.List<java.lang.String> updateColumns)
-
-
Method Detail
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOExceptionWrite this object out- Specified by:
writeExternalin interfacejava.io.Externalizable- Parameters:
out- write bytes here- Throws:
java.io.IOException- thrown on error
-
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundExceptionRead this object from a stream of stored objects.- Specified by:
readExternalin interfacejava.io.Externalizable- Parameters:
in- read this.- Throws:
java.io.IOException- thrown on errorjava.lang.ClassNotFoundException- thrown on error
-
getTypeFormatId
public int getTypeFormatId()
Get the formatID which corresponds to this class.- Specified by:
getTypeFormatIdin interfaceTypedFormat- Returns:
- the formatID of this class
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-