public static enum DBInsightContext.CasePolicy extends java.lang.Enum<DBInsightContext.CasePolicy>
| Enum Constant and Description |
|---|
LOWER
Return in lowercase
|
PRESERVE
Preserves the case of the search string
|
UPPER
Return in uppercase
|
| Modifier and Type | Method and Description |
|---|---|
static DBInsightContext.CasePolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBInsightContext.CasePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBInsightContext.CasePolicy PRESERVE
public static final DBInsightContext.CasePolicy LOWER
public static final DBInsightContext.CasePolicy UPPER
public static DBInsightContext.CasePolicy[] values()
for (DBInsightContext.CasePolicy c : DBInsightContext.CasePolicy.values()) System.out.println(c);
public static DBInsightContext.CasePolicy 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