public enum InternalLoadBalancingMode extends Enum<InternalLoadBalancingMode>
Enum Constant and Description |
---|
NONE
Enum value None.
|
PUBLISHING
Enum value Publishing.
|
WEB
Enum value Web.
|
Modifier and Type | Method and Description |
---|---|
static InternalLoadBalancingMode |
fromString(String value)
Parses a serialized value to a InternalLoadBalancingMode instance.
|
String |
toString() |
static InternalLoadBalancingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalLoadBalancingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalLoadBalancingMode NONE
public static final InternalLoadBalancingMode WEB
public static final InternalLoadBalancingMode PUBLISHING
public static InternalLoadBalancingMode[] values()
for (InternalLoadBalancingMode c : InternalLoadBalancingMode.values()) System.out.println(c);
public static InternalLoadBalancingMode 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 static InternalLoadBalancingMode fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<InternalLoadBalancingMode>
Copyright © 2019. All rights reserved.