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