Uses of Class
org.h2.value.CompareMode

Packages that use CompareMode
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
org.h2.table Classes related to a table and table meta data. 
org.h2.value Data type and value implementations. 
 

Uses of CompareMode in org.h2.engine
 

Methods in org.h2.engine that return CompareMode
 CompareMode Database.getCompareMode()
           
 

Methods in org.h2.engine with parameters of type CompareMode
 void Database.setCompareMode(CompareMode compareMode)
           
 

Uses of CompareMode in org.h2.expression
 

Constructors in org.h2.expression with parameters of type CompareMode
CompareLike(CompareMode compareMode, Expression left, Expression right, Expression escape, boolean regexp)
           
 

Uses of CompareMode in org.h2.table
 

Fields in org.h2.table declared as CompareMode
protected  CompareMode Table.compareMode
          The compare mode used for this table.
 

Methods in org.h2.table that return CompareMode
 CompareMode Table.getCompareMode()
           
 

Methods in org.h2.table with parameters of type CompareMode
 void TableData.setCompareMode(CompareMode compareMode)
           
 

Uses of CompareMode in org.h2.value
 

Methods in org.h2.value that return CompareMode
static CompareMode CompareMode.getInstance(java.lang.String name, int strength)
          Create a new compare mode with the given collator and strength.
 

Methods in org.h2.value with parameters of type CompareMode
protected  int ValueLong.compareSecure(Value o, CompareMode mode)
           
protected  int ValueTime.compareSecure(Value o, CompareMode mode)
           
protected  int ValueByte.compareSecure(Value o, CompareMode mode)
           
protected  int ValueTimestamp.compareSecure(Value o, CompareMode mode)
           
protected  int ValueUuid.compareSecure(Value o, CompareMode mode)
           
protected  int ValueString.compareSecure(Value o, CompareMode mode)
           
protected  int ValueDate.compareSecure(Value o, CompareMode mode)
           
protected  int ValueNull.compareSecure(Value v, CompareMode mode)
           
protected  int ValueDecimal.compareSecure(Value o, CompareMode mode)
           
protected  int ValueInt.compareSecure(Value o, CompareMode mode)
           
protected  int ValueLob.compareSecure(Value v, CompareMode mode)
           
protected  int ValueResultSet.compareSecure(Value v, CompareMode mode)
           
protected  int ValueFloat.compareSecure(Value o, CompareMode mode)
           
protected  int ValueDouble.compareSecure(Value o, CompareMode mode)
           
protected  int ValueArray.compareSecure(Value o, CompareMode mode)
           
protected abstract  int Value.compareSecure(Value v, CompareMode mode)
          Compare the value with another value of the same type.
protected  int ValueBoolean.compareSecure(Value o, CompareMode mode)
           
protected  int ValueStringFixed.compareSecure(Value o, CompareMode mode)
           
protected  int ValueStringIgnoreCase.compareSecure(Value o, CompareMode mode)
           
protected  int ValueShort.compareSecure(Value o, CompareMode mode)
           
 int Value.compareTo(Value v, CompareMode mode)
          Compare this value against another value using the specified compare mode.
 int Value.compareTypeSave(Value v, CompareMode mode)
          Compare this value against another value given that the values are of the same data type.