public enum FTCase extends Enum<FTCase>
Enum Constant and Description |
---|
INSENSITIVE
Insensitive.
|
LOWER
Lower-case.
|
SENSITIVE
Sensitive.
|
UPPER
Upper-case.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns a string representation.
|
static FTCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTCase SENSITIVE
public static final FTCase INSENSITIVE
public static final FTCase LOWER
public static final FTCase UPPER
public static FTCase[] values()
for (FTCase c : FTCase.values()) System.out.println(c);
public static FTCase 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 © 2005–2015 BaseX Team. All rights reserved.