public enum AgentCheckoutMode extends java.lang.Enum<AgentCheckoutMode>
Enum Constant and Description |
---|
DO_NOT_CHECKOUT
Build script checkouts sources itself
|
ON_AGENT
Agent checkouts sources itself
|
ON_SERVER
Agent asks patch from the server
|
Modifier and Type | Method and Description |
---|---|
static AgentCheckoutMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AgentCheckoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentCheckoutMode ON_SERVER
public static final AgentCheckoutMode ON_AGENT
public static final AgentCheckoutMode DO_NOT_CHECKOUT
public static AgentCheckoutMode[] values()
for (AgentCheckoutMode c : AgentCheckoutMode.values()) System.out.println(c);
public static AgentCheckoutMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null