public static enum CqUserDb.WordMode extends Enum<CqUserDb.WordMode> implements CqUserDb.SearchKey<List<String>>
Enum Constant and Description |
---|
ALL
Match all of the words in the target list
|
ANY
Match any (at least one) of the words in the target list
|
EXACT
Match all of the words in the target list in the order given
|
NONE
Match none (do not match any) of the words in the target list
|
Modifier and Type | Method and Description |
---|---|
static CqUserDb.WordMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CqUserDb.WordMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CqUserDb.WordMode ALL
public static final CqUserDb.WordMode ANY
public static final CqUserDb.WordMode EXACT
public static final CqUserDb.WordMode NONE
public static CqUserDb.WordMode 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 nullpublic static CqUserDb.WordMode[] values()
for (CqUserDb.WordMode c : CqUserDb.WordMode.values()) System.out.println(c);
Copyright © IBM 2016. All rights reserved.