public static enum DepsGenerator.InclusionStrategy extends java.lang.Enum<DepsGenerator.InclusionStrategy>
Enum Constant and Description |
---|
ALWAYS |
DO_NOT_DUPLICATE |
WHEN_IN_SRCS |
Modifier and Type | Method and Description |
---|---|
static DepsGenerator.InclusionStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DepsGenerator.InclusionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepsGenerator.InclusionStrategy ALWAYS
public static final DepsGenerator.InclusionStrategy WHEN_IN_SRCS
public static final DepsGenerator.InclusionStrategy DO_NOT_DUPLICATE
public static DepsGenerator.InclusionStrategy[] values()
for (DepsGenerator.InclusionStrategy c : DepsGenerator.InclusionStrategy.values()) System.out.println(c);
public static DepsGenerator.InclusionStrategy 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.