public enum EPunchlineDeployMode extends Enum<EPunchlineDeployMode>
| Enum Constant and Description | 
|---|
CLIENT
client mode 
 | 
CLUSTER
submitted to a real target cluster 
 | 
FOREGROUND
Single process foreground mode 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static EPunchlineDeployMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static EPunchlineDeployMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EPunchlineDeployMode FOREGROUND
public static final EPunchlineDeployMode CLIENT
public static final EPunchlineDeployMode CLUSTER
public static EPunchlineDeployMode[] values()
for (EPunchlineDeployMode c : EPunchlineDeployMode.values()) System.out.println(c);
public static EPunchlineDeployMode 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<EPunchlineDeployMode>Copyright © 2014–2023. All rights reserved.