public static enum Repository.KeywordCriteria extends Enum<Repository.KeywordCriteria>
Enum Constant and Description |
---|
ALL
All keywords must be present in the search result.
|
ANY
At least one of the keywords must be present in the search result.
|
NONE
None of the keywords may be present in the search result.
|
Modifier and Type | Method and Description |
---|---|
static Repository.KeywordCriteria |
getDefault() |
static Repository.KeywordCriteria |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repository.KeywordCriteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Repository.KeywordCriteria ALL
public static final Repository.KeywordCriteria ANY
public static final Repository.KeywordCriteria NONE
public static Repository.KeywordCriteria[] values()
for (Repository.KeywordCriteria c : Repository.KeywordCriteria.values()) System.out.println(c);
public static Repository.KeywordCriteria 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 Repository.KeywordCriteria getDefault()
null
)Copyright © 2013–2019. All rights reserved.