|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SqlCmpOptions>
com.alachisoft.ncache.runtime.dependencies.SqlCmpOptions
public enum SqlCmpOptions
Enum Constant Summary | |
---|---|
BinarySort
Specifies that sorts should be based on a characters numeric value instead of its alphabetical value |
|
BinarySort2
Performs a binary sort |
|
IgnoreCase
Specifies that System.Data.SqlTypes.SqlString comparisons must ignore case. |
|
IgnoreKanaType
Specifies that System.Data.SqlTypes.SqlString comparisons must ignore the Kana type. |
|
IgnoreNonSpace
Specifies that System.Data.SqlTypes.SqlString comparisons must ignore nonspace combining characters, such as diacritics. |
|
IgnoreWidth
Specifies that System.Data.SqlTypes.SqlString comparisons must ignore the character width. |
|
None
Specifies the default option settings for System.Data.SqlTypes.SqlString comparisons. |
Method Summary | |
---|---|
static SqlCmpOptions |
getSqlCmpOptions(int value)
|
static SqlCmpOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SqlCmpOptions[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SqlCmpOptions BinarySort
public static final SqlCmpOptions BinarySort2
public static final SqlCmpOptions IgnoreCase
public static final SqlCmpOptions IgnoreKanaType
public static final SqlCmpOptions IgnoreNonSpace
public static final SqlCmpOptions IgnoreWidth
public static final SqlCmpOptions None
Method Detail |
---|
public static SqlCmpOptions getSqlCmpOptions(int value) throws ArgumentException
ArgumentException
public static SqlCmpOptions valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static final SqlCmpOptions[] values()
for(SqlCmpOptions c : SqlCmpOptions.values()) System.out.println(c);
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |