private static enum CloneCommand.FETCH_TYPE extends java.lang.Enum<CloneCommand.FETCH_TYPE>
| Enum Constant and Description |
|---|
ALL_BRANCHES |
MIRROR |
MULTIPLE_BRANCHES |
| Modifier and Type | Method and Description |
|---|---|
static CloneCommand.FETCH_TYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloneCommand.FETCH_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloneCommand.FETCH_TYPE MULTIPLE_BRANCHES
public static final CloneCommand.FETCH_TYPE ALL_BRANCHES
public static final CloneCommand.FETCH_TYPE MIRROR
public static CloneCommand.FETCH_TYPE[] values()
for (CloneCommand.FETCH_TYPE c : CloneCommand.FETCH_TYPE.values()) System.out.println(c);
public static CloneCommand.FETCH_TYPE 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