org.basex.query.xpath.expr
Enum FTOption.CASE

java.lang.Object
  extended by java.lang.Enum<FTOption.CASE>
      extended by org.basex.query.xpath.expr.FTOption.CASE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FTOption.CASE>
Enclosing class:
FTOption

public static enum FTOption.CASE
extends java.lang.Enum<FTOption.CASE>

Case sensitivity enumeration.


Enum Constant Summary
INSENSITIVE
          Insensitive search.
LOWERCASE
          Lowercase search.
SENSITIVE
          Sensitive search.
UPPERCASE
          Uppercase search.
 
Method Summary
static FTOption.CASE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FTOption.CASE[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INSENSITIVE

public static final FTOption.CASE INSENSITIVE
Insensitive search.


LOWERCASE

public static final FTOption.CASE LOWERCASE
Lowercase search.


SENSITIVE

public static final FTOption.CASE SENSITIVE
Sensitive search.


UPPERCASE

public static final FTOption.CASE UPPERCASE
Uppercase search.

Method Detail

valueOf

public static FTOption.CASE valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static FTOption.CASE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FTOption.CASE c : FTOption.CASE.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared