public enum RoutingType extends Enum<RoutingType>
| Enum Constant and Description |
|---|
FirstResponse
Enumeration : FirstResponse
|
Unanimous
Enumeration : Unanimous
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RoutingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutingType Unanimous
public static final RoutingType FirstResponse
public static RoutingType[] values()
for (RoutingType c : RoutingType.values()) System.out.println(c);
public static RoutingType 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 nullpublic String toString()
toString in class Enum<RoutingType>Copyright © 2015. All Rights Reserved.