public static enum DependencyNode.Type extends Enum<DependencyNode.Type>
| Enum Constant and Description |
|---|
INNER |
TOP_LEVEL |
UNNAMED_TOP_LEVEL |
| Modifier and Type | Method and Description |
|---|---|
static DependencyNode.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependencyNode.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyNode.Type TOP_LEVEL
public static final DependencyNode.Type INNER
public static final DependencyNode.Type UNNAMED_TOP_LEVEL
public static DependencyNode.Type[] values()
for (DependencyNode.Type c : DependencyNode.Type.values()) System.out.println(c);
public static DependencyNode.Type 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 © 2003–2019 MuleSoft, Inc.. All rights reserved.