Example usage for javax.sql.rowset.spi SyncProvider GRADE_NONE

List of usage examples for javax.sql.rowset.spi SyncProvider GRADE_NONE

Introduction

In this page you can find the example usage for javax.sql.rowset.spi SyncProvider GRADE_NONE.

Prototype

int GRADE_NONE

To view the source code for javax.sql.rowset.spi SyncProvider GRADE_NONE.

Click Source Link

Document

Indicates that no synchronization with the originating data source is provided.

Usage

From source file:Main.java

/**
     * Returns a constant indicating the grade of synchronization a RowSet object
     * can expect from this SyncProvider object.
     *//*  w  ww  .j  av  a 2s . com*/
    public int getProviderGrade() {
        return SyncProvider.GRADE_NONE;
    }