public enum LoadBalancerPersistenceType extends Enum<LoadBalancerPersistenceType>
| Enum Constant and Description |
|---|
NONE |
SOURCE_ADDRESS |
SSL_STICKY |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static LoadBalancerPersistenceType |
fromValue(String type) |
String |
toString() |
static LoadBalancerPersistenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadBalancerPersistenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadBalancerPersistenceType NONE
public static final LoadBalancerPersistenceType SSL_STICKY
public static final LoadBalancerPersistenceType SOURCE_ADDRESS
public static final LoadBalancerPersistenceType UNRECOGNIZED
public static LoadBalancerPersistenceType[] values()
for (LoadBalancerPersistenceType c : LoadBalancerPersistenceType.values()) System.out.println(c);
public static LoadBalancerPersistenceType 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<LoadBalancerPersistenceType>public static LoadBalancerPersistenceType fromValue(String type)
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.