Project: stp

com.ibm.rational.wvcm.stp.cq
Enum CqUserDb.SearchLevel

Object
  extended by Enum<CqUserDb.SearchLevel>
      extended by CqUserDb.SearchLevel
All Implemented Interfaces:
CqUserDb.SearchKey<String>, Serializable, Comparable<CqUserDb.SearchLevel>
Enclosing interface:
CqUserDb

public static enum CqUserDb.SearchLevel
extends Enum<CqUserDb.SearchLevel>
implements CqUserDb.SearchKey<String>

Specifies a simple search string


Enum Constant Summary
SIMPLE
          Interpret the associated argument as a simple search string and match accordingly against that.
 
Method Summary
static CqUserDb.SearchLevel valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CqUserDb.SearchLevel[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SIMPLE

public static final CqUserDb.SearchLevel SIMPLE
Interpret the associated argument as a simple search string and match accordingly against that.

Method Detail

valueOf

public static CqUserDb.SearchLevel valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name

values

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

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

Generated Sun 13-Nov-2011 09:26 AM

Copyright © IBM 2011. All rights reserved.