public enum SqlCmpOptions extends java.lang.Enum<SqlCmpOptions>
Enum Constant | Description |
---|---|
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 SqlString comparisons must ignore case.
|
IgnoreKanaType |
Specifies that System.Data.SqlTypes.SqlString comparisons must ignore the
Kana type.
|
IgnoreNonSpace |
Specifies that 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 SqlString comparisons.
|
Modifier and Type | Method | Description |
---|---|---|
static SqlCmpOptions |
getSqlCmpOptions(int value) |
retreives the enum constant of the specified value, if exists.
|
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 are declared.
|
public static final SqlCmpOptions None
public static final SqlCmpOptions IgnoreCase
public static final SqlCmpOptions IgnoreNonSpace
public static final SqlCmpOptions IgnoreKanaType
public static final SqlCmpOptions IgnoreWidth
public static final SqlCmpOptions BinarySort2
public static final SqlCmpOptions BinarySort
public static SqlCmpOptions[] values()
for (SqlCmpOptions c : SqlCmpOptions.values()) System.out.println(c);
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 namejava.lang.NullPointerException
- if the argument is nullpublic static SqlCmpOptions getSqlCmpOptions(int value) throws java.lang.IllegalArgumentException
value
- enum constant indexjava.lang.IllegalArgumentException