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

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

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

Case sensitivity enumeration.


Enum Constant Summary
WITH
          Using wildcards.
WITHOUT
          No wildcards.
 
Method Summary
static FTOption.WILD valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FTOption.WILD[] 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

WITH

public static final FTOption.WILD WITH
Using wildcards.


WITHOUT

public static final FTOption.WILD WITHOUT
No wildcards.

Method Detail

valueOf

public static FTOption.WILD 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.WILD[] 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.WILD c : FTOption.WILD.values())
    System.out.println(c);

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