public enum ResultType extends Enum<ResultType>
SparselyPopulatedQueryExtensionHandler. Describes
the current type of results desired from a query. STANDARD results relate specifically to a standard site (multitenant
concept). TEMPLATE results relate specifically to a template site's catalog or profile (also a multitenant concept)| Enum Constant and Description |
|---|
CATALOG_ONLY |
IGNORE |
STANDARD |
STANDARD_CACHE |
TEMPLATE |
TEMPLATE_CACHE |
| Modifier and Type | Method and Description |
|---|---|
static ResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultType STANDARD
public static final ResultType STANDARD_CACHE
public static final ResultType TEMPLATE
public static final ResultType TEMPLATE_CACHE
public static final ResultType IGNORE
public static final ResultType CATALOG_ONLY
public static ResultType[] values()
for (ResultType c : ResultType.values()) System.out.println(c);
public static ResultType 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 © 2018. All rights reserved.