public static enum DependencyOptions.DependencyMode extends java.lang.Enum<DependencyOptions.DependencyMode>
Enum Constant and Description |
---|
NONE
All input files will be included in the compilation in the order they were specified in.
|
PRUNE
Input files that are transitive dependencies of the entry points will be included in the
compilation in dependency order.
|
PRUNE_LEGACY
Input files that are transitive dependencies of the entry points will be included in the
compilation in dependency order.
|
SORT_ONLY
All input files will be included in the compilation in dependency order.
|
Modifier and Type | Method and Description |
---|---|
static DependencyOptions.DependencyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DependencyOptions.DependencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyOptions.DependencyMode NONE
public static final DependencyOptions.DependencyMode SORT_ONLY
public static final DependencyOptions.DependencyMode PRUNE_LEGACY
In addition to the explicitly defined entry points, moochers (see below) are implicit entry points.
public static final DependencyOptions.DependencyMode PRUNE
All entry points must be explicitly defined.
public static DependencyOptions.DependencyMode[] values()
for (DependencyOptions.DependencyMode c : DependencyOptions.DependencyMode.values()) System.out.println(c);
public static DependencyOptions.DependencyMode 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 © 2009-2020 Google. All Rights Reserved.