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