public enum SearchResultType extends Enum<SearchResultType>
| Enum Constant and Description |
|---|
ATTACHMENT |
PAGE |
PAGE_CONTENT |
TEMPLATE |
| Modifier and Type | Method and Description |
|---|---|
static SearchResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchResultType PAGE
public static final SearchResultType PAGE_CONTENT
public static final SearchResultType ATTACHMENT
public static final SearchResultType TEMPLATE
public static SearchResultType[] values()
for (SearchResultType c : SearchResultType.values()) System.out.println(c);
public static SearchResultType 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 nullCopyright © 2003–2019 eXo Platform SAS. All rights reserved.