public enum FlattenDependencyMode extends java.lang.Enum<FlattenDependencyMode>
| Enum Constant and Description |
|---|
all
Flatten both direct and transitive dependencies.
|
direct
Flatten only the direct dependency versions.
|
| Modifier and Type | Method and Description |
|---|---|
static FlattenDependencyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlattenDependencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlattenDependencyMode direct
public static final FlattenDependencyMode all
public static FlattenDependencyMode[] values()
for (FlattenDependencyMode c : FlattenDependencyMode.values()) System.out.println(c);
public static FlattenDependencyMode 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 nullCopyright © 2014-2020 FuseSource, Corp.. All Rights Reserved.