public enum DeploymentRuntime extends Enum<DeploymentRuntime>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
toString() |
static DeploymentRuntime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentRuntime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentRuntime JAVA8
public static final DeploymentRuntime PYTHON
public static final DeploymentRuntime NODEJS43
public static final DeploymentRuntime NODEJS
public static DeploymentRuntime[] values()
for (DeploymentRuntime c : DeploymentRuntime.values()) System.out.println(c);
public static DeploymentRuntime 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 nullpublic String getName()
public String toString()
toString in class Enum<DeploymentRuntime>Copyright © 2020. All rights reserved.