|
Spring Data Commons | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Part.IgnoreCaseType>
org.springframework.data.repository.query.parser.Part.IgnoreCaseType
public static enum Part.IgnoreCaseType
The various types of ignore case that are supported.
| Enum Constant Summary | |
|---|---|
ALWAYS
Should ignore the sentence case, throwing an exception if this is not possible. |
|
NEVER
Should not ignore the sentence case. |
|
WHEN_POSSIBLE
Should ignore the sentence case when possible to do so, silently ignoring the option when not possible. |
|
| Method Summary | |
|---|---|
static Part.IgnoreCaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Part.IgnoreCaseType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, 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 Part.IgnoreCaseType NEVER
public static final Part.IgnoreCaseType ALWAYS
public static final Part.IgnoreCaseType WHEN_POSSIBLE
| Method Detail |
|---|
public static Part.IgnoreCaseType[] values()
for (Part.IgnoreCaseType c : Part.IgnoreCaseType.values()) System.out.println(c);
public static Part.IgnoreCaseType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
Spring Data Commons | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||