public static enum FacetExecutor.Mode extends Enum<FacetExecutor.Mode>
| Enum Constant and Description |
|---|
COLLECTOR
Collector mode, maps to
FacetExecutor.collector(). |
POST
Post mode, maps to
FacetExecutor.post(). |
| Modifier and Type | Method and Description |
|---|---|
static FacetExecutor.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetExecutor.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetExecutor.Mode COLLECTOR
FacetExecutor.collector().public static final FacetExecutor.Mode POST
FacetExecutor.post().public static FacetExecutor.Mode[] values()
for (FacetExecutor.Mode c : FacetExecutor.Mode.values()) System.out.println(c);
public static FacetExecutor.Mode 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 © 2009–2016. All rights reserved.