Enum CommitMergeStatus
- java.lang.Object
- 
- java.lang.Enum<CommitMergeStatus>
- 
- com.google.gerrit.server.git.strategy.CommitMergeStatus
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<CommitMergeStatus>
 
 public enum CommitMergeStatus extends Enum<CommitMergeStatus> Status codes set onCodeReviewCommits bySubmitStrategyimplementations.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ALREADY_MERGEDCANNOT_CHERRY_PICK_ROOTCANNOT_REBASE_ROOTCLEAN_MERGECLEAN_PICKCLEAN_REBASEMANUAL_RECURSIVE_MERGEMISSING_DEPENDENCYNOT_FAST_FORWARDPATH_CONFLICTREBASE_MERGE_CONFLICTSKIPPED_IDENTICAL_TREE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMessage()static CommitMergeStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CommitMergeStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CLEAN_MERGEpublic static final CommitMergeStatus CLEAN_MERGE 
 - 
CLEAN_PICKpublic static final CommitMergeStatus CLEAN_PICK 
 - 
CLEAN_REBASEpublic static final CommitMergeStatus CLEAN_REBASE 
 - 
ALREADY_MERGEDpublic static final CommitMergeStatus ALREADY_MERGED 
 - 
PATH_CONFLICTpublic static final CommitMergeStatus PATH_CONFLICT 
 - 
REBASE_MERGE_CONFLICTpublic static final CommitMergeStatus REBASE_MERGE_CONFLICT 
 - 
SKIPPED_IDENTICAL_TREEpublic static final CommitMergeStatus SKIPPED_IDENTICAL_TREE 
 - 
MISSING_DEPENDENCYpublic static final CommitMergeStatus MISSING_DEPENDENCY 
 - 
MANUAL_RECURSIVE_MERGEpublic static final CommitMergeStatus MANUAL_RECURSIVE_MERGE 
 - 
CANNOT_CHERRY_PICK_ROOTpublic static final CommitMergeStatus CANNOT_CHERRY_PICK_ROOT 
 - 
CANNOT_REBASE_ROOTpublic static final CommitMergeStatus CANNOT_REBASE_ROOT 
 - 
NOT_FAST_FORWARDpublic static final CommitMergeStatus NOT_FAST_FORWARD 
 
- 
 - 
Method Detail- 
valuespublic static CommitMergeStatus[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CommitMergeStatus c : CommitMergeStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CommitMergeStatus valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getMessagepublic String getMessage() 
 
- 
 
-