public static enum ExecutorContext.Environment extends Enum<ExecutorContext.Environment>
| Enum Constant and Description |
|---|
MICROSERVICE |
SERVICE |
TESTING |
TRANSFORM |
| Modifier and Type | Method and Description |
|---|---|
static ExecutorContext.Environment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutorContext.Environment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutorContext.Environment SERVICE
public static final ExecutorContext.Environment TRANSFORM
public static final ExecutorContext.Environment MICROSERVICE
public static final ExecutorContext.Environment TESTING
public static ExecutorContext.Environment[] values()
for (ExecutorContext.Environment c : ExecutorContext.Environment.values()) System.out.println(c);
public static ExecutorContext.Environment 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 © 2020 CDAP Licensed under the Apache License, Version 2.0.