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