public static enum CxxLinkGroupMappingTarget.Traversal extends Enum<CxxLinkGroupMappingTarget.Traversal>
Enum Constant and Description |
---|
NODE
The target is included in the link group.
|
TREE
The target and all of its transitive dependencies are included in the link group.
|
Modifier and Type | Method and Description |
---|---|
static CxxLinkGroupMappingTarget.Traversal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CxxLinkGroupMappingTarget.Traversal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CxxLinkGroupMappingTarget.Traversal TREE
public static final CxxLinkGroupMappingTarget.Traversal NODE
public static CxxLinkGroupMappingTarget.Traversal[] values()
for (CxxLinkGroupMappingTarget.Traversal c : CxxLinkGroupMappingTarget.Traversal.values()) System.out.println(c);
public static CxxLinkGroupMappingTarget.Traversal 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 null