public static enum DataLoadCoordinator.LikeClause extends java.lang.Enum<DataLoadCoordinator.LikeClause>
| Enum Constant and Description |
|---|
CASE_INSENSITIVE
Case-insensitive LIKE.
|
CASE_SENSITIVE
Case-sensitive LIKE.
|
NONE
Not a LIKE clause.
|
| Modifier and Type | Method and Description |
|---|---|
static DataLoadCoordinator.LikeClause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataLoadCoordinator.LikeClause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataLoadCoordinator.LikeClause NONE
public static final DataLoadCoordinator.LikeClause CASE_SENSITIVE
%value%.public static final DataLoadCoordinator.LikeClause CASE_INSENSITIVE
(?i)%value%.public static DataLoadCoordinator.LikeClause[] values()
for (DataLoadCoordinator.LikeClause c : DataLoadCoordinator.LikeClause.values()) System.out.println(c);
public static DataLoadCoordinator.LikeClause 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 null