API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql.rowset. FilteredRowSet View Source
Author(s)
Jonathan Bruce
Since
Version
Serial
Hierarchy
 Wrapper
      ResultSet
          RowSet
              CachedRowSet
                  WebRowSet
                      FilteredRowSet
Subinterfaces
Description
public interface FilteredRowSet
  The standard interface that all standard implementations of FilteredRowSet must implement.
See also:   
Methods
Hide/Show inherited methods
public Predicate getFilter ()
  Retrieves the active filter for this FilteredRowSet object.
public void setFilter (Predicate p) throws SQLException
  Applies the given Predicate object to this FilteredRowSet object.
Fields
Hide/Show inherited fields
publicfinalstatic int CLOSE_CURSORS_AT_COMMIT = "2" [Inherited From WebRowSet]
  The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is commited.
publicfinalstatic boolean COMMIT_ON_ACCEPT_CHANGES = "true" [Inherited From WebRowSet]
  Causes the CachedRowSet object's SyncProvider to commit the changes when acceptChanges() is called.
publicfinalstatic int CONCUR_READ_ONLY = "1007" [Inherited From WebRowSet]
  The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
publicfinalstatic int CONCUR_UPDATABLE = "1008" [Inherited From WebRowSet]
  The constant indicating the concurrency mode for a ResultSet object that may be updated.
publicfinalstatic int FETCH_FORWARD = "1000" [Inherited From WebRowSet]
  The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.
publicfinalstatic int FETCH_REVERSE = "1001" [Inherited From WebRowSet]
  The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.
publicfinalstatic int FETCH_UNKNOWN = "1002" [Inherited From WebRowSet]
  The constant indicating that the order in which rows in a result set will be processed is unknown.
publicfinalstatic int HOLD_CURSORS_OVER_COMMIT = "1" [Inherited From WebRowSet]
  The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is commited.
publicfinalstatic String PUBLIC_XML_SCHEMA = "--//Sun Microsystems, Inc.//XSD Schema//EN" [Inherited From WebRowSet]
The public identifier for the XML Schema definition that defines the XML tags and their valid values for a WebRowSet implementation.
publicfinalstatic String SCHEMA_SYSTEM_ID = "http://java.sun.com/xml/ns/jdbc/webrowset.xsd" [Inherited From WebRowSet]
The URL for the XML Schema definition file that defines the XML tags and their valid values for a WebRowSet implementation.
publicfinalstatic int TYPE_FORWARD_ONLY = "1003" [Inherited From WebRowSet]
  The constant indicating the type for a ResultSet object whose cursor may move only forward.
publicfinalstatic int TYPE_SCROLL_INSENSITIVE = "1004" [Inherited From WebRowSet]
  The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes to the data that underlies the ResultSet.
publicfinalstatic int TYPE_SCROLL_SENSITIVE = "1005" [Inherited From WebRowSet]
  The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar