public static enum CmsSourceSearchForm.SearchType extends java.lang.Enum<CmsSourceSearchForm.SearchType>
| Enum Constant and Description |
|---|
contentValues
XML content values only.
|
fullText
Full text search.
|
properties
Property search.
|
renameContainer |
resourcetype |
solr
Filter using a solr index, before searching for matches.
|
solrContentValues
Filter using a solr index, before searching for matches, XML content values only.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isContentValuesOnly()
Returns whether this is a content values only search type.
|
boolean |
isPropertySearch()
Returns whether this is a property search type.
|
boolean |
isSolrSearch()
Returns whether this is a SOLR search type.
|
static CmsSourceSearchForm.SearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsSourceSearchForm.SearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsSourceSearchForm.SearchType contentValues
public static final CmsSourceSearchForm.SearchType fullText
public static final CmsSourceSearchForm.SearchType solr
public static final CmsSourceSearchForm.SearchType solrContentValues
public static final CmsSourceSearchForm.SearchType properties
public static final CmsSourceSearchForm.SearchType resourcetype
public static final CmsSourceSearchForm.SearchType renameContainer
public static CmsSourceSearchForm.SearchType[] values()
for (CmsSourceSearchForm.SearchType c : CmsSourceSearchForm.SearchType.values()) System.out.println(c);
public static CmsSourceSearchForm.SearchType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isContentValuesOnly()
true if this is a content values only search typepublic boolean isPropertySearch()
public boolean isSolrSearch()
true if this is a SOLR search type