Uses of Class
org.sqlite.text.Collator

Packages that use Collator
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.event Provides the classes for dealing with events fired by SQLite. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
org.sqlite.swig Provides the classes necessary to invoke a SQLite C Interface API. 
 

Uses of Collator in org.sqlite
 

Methods in org.sqlite with parameters of type Collator
 void Database.createCollationSequence(Collator col)
          invoke sqlite3_create_collation() function.
 void Database.dropCollationSequence(Collator col)
          invoke sqlite3_create_function() function.
 

Uses of Collator in org.sqlite.event
 

Methods in org.sqlite.event that return Collator
 Collator CollationNeededHandler.addCollator(Collator col)
          Appends the Collator object.
 Collator CollationNeededHandler.removeCollator(Collator col)
          Removes the Collator object.
 Collator CollationNeededHandler.removeCollator(java.lang.String name)
          Removes the Collator object.
 

Methods in org.sqlite.event with parameters of type Collator
 Collator CollationNeededHandler.addCollator(Collator col)
          Appends the Collator object.
 Collator CollationNeededHandler.removeCollator(Collator col)
          Removes the Collator object.
 

Uses of Collator in org.sqlite.jdbc
 

Methods in org.sqlite.jdbc with parameters of type Collator
 void JdbcConnection.createCollationSequence(Collator col)
          invoke sqlite3_create_collation() function.
 void JdbcConnection.dropCollationSequence(Collator col)
          invoke sqlite3_create_function() function.
 

Uses of Collator in org.sqlite.swig
 

Methods in org.sqlite.swig with parameters of type Collator
static int SQLite3.sqlite3_create_collation(SWIGTYPE_p_sqlite3 db, Collator col)
           
static int SQLite3.sqlite3_drop_collation(SWIGTYPE_p_sqlite3 db, Collator col)