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