public static enum Order.CaseSensitivity extends Enum<Order.CaseSensitivity>
Enum Constant and Description |
---|
INSENSITIVE |
SENSITIVE |
Modifier and Type | Method and Description |
---|---|
static Order.CaseSensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order.CaseSensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order.CaseSensitivity SENSITIVE
public static final Order.CaseSensitivity INSENSITIVE
public static Order.CaseSensitivity[] values()
for (Order.CaseSensitivity c : Order.CaseSensitivity.values()) System.out.println(c);
public static Order.CaseSensitivity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2007–2014 Semochkin Vitaly Evgenevich. All rights reserved.