public enum SubmitType extends Enum<SubmitType>
| Enum Constant and Description |
|---|
CHERRY_PICK |
FAST_FORWARD_ONLY |
INHERIT |
MERGE_ALWAYS |
MERGE_IF_NECESSARY |
REBASE_ALWAYS |
REBASE_IF_NECESSARY |
| Modifier and Type | Method and Description |
|---|---|
static SubmitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubmitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmitType INHERIT
public static final SubmitType FAST_FORWARD_ONLY
public static final SubmitType MERGE_IF_NECESSARY
public static final SubmitType REBASE_IF_NECESSARY
public static final SubmitType REBASE_ALWAYS
public static final SubmitType MERGE_ALWAYS
public static final SubmitType CHERRY_PICK
public static SubmitType[] values()
for (SubmitType c : SubmitType.values()) System.out.println(c);
public static SubmitType 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 nullCopyright © 2018. All rights reserved.