public static enum VersionStrategy.StrategySearchMode extends Enum<VersionStrategy.StrategySearchMode>
| Enum Constant and Description |
|---|
DEPTH
Search go deep in the git commit history tree to find all relevant commits having at least one tag with
version information.
|
STOP_AT_FIRST
Search will stop on first commit having at least one tag with version information.
|
| Modifier and Type | Method and Description |
|---|---|
static VersionStrategy.StrategySearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionStrategy.StrategySearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionStrategy.StrategySearchMode STOP_AT_FIRST
public static final VersionStrategy.StrategySearchMode DEPTH
VersionStrategy.searchDepthLimit() defined value.public static VersionStrategy.StrategySearchMode[] values()
for (VersionStrategy.StrategySearchMode c : VersionStrategy.StrategySearchMode.values()) System.out.println(c);
public static VersionStrategy.StrategySearchMode 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 © 2016–2019 Matthieu Brouillard. All rights reserved.