public enum LoadBalancingType extends Enum<LoadBalancingType> implements Enumerator
ConfigurationPackage.getLoadBalancingType()
Enum Constant and Description |
---|
ANY_TO_THRESHOLD
The 'ANY TO THRESHOLD' literal object.
|
IDLE_TO_ONE
The 'IDLE TO ONE' literal object.
|
IDLE_TO_THRESHOLD
The 'IDLE TO THRESHOLD' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ANY_TO_THRESHOLD_VALUE
The 'ANY TO THRESHOLD' literal value.
|
static int |
IDLE_TO_ONE_VALUE
The 'IDLE TO ONE' literal value.
|
static int |
IDLE_TO_THRESHOLD_VALUE
The 'IDLE TO THRESHOLD' literal value.
|
static List<LoadBalancingType> |
VALUES
A public read-only list of all the 'Load Balancing Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static LoadBalancingType |
get(int value)
Returns the 'Load Balancing Type' literal with the specified integer value.
|
static LoadBalancingType |
get(String literal)
Returns the 'Load Balancing Type' literal with the specified literal value.
|
static LoadBalancingType |
getByName(String name)
Returns the 'Load Balancing Type' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static LoadBalancingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadBalancingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadBalancingType IDLE_TO_ONE
IDLE_TO_ONE_VALUE
public static final LoadBalancingType IDLE_TO_THRESHOLD
IDLE_TO_THRESHOLD_VALUE
public static final LoadBalancingType ANY_TO_THRESHOLD
ANY_TO_THRESHOLD_VALUE
public static final int IDLE_TO_ONE_VALUE
If the meaning of 'IDLE TO ONE' literal object isn't clear, there really should be more of a description here...
IDLE_TO_ONE
,
Constant Field Valuespublic static final int IDLE_TO_THRESHOLD_VALUE
If the meaning of 'IDLE TO THRESHOLD' literal object isn't clear, there really should be more of a description here...
IDLE_TO_THRESHOLD
,
Constant Field Valuespublic static final int ANY_TO_THRESHOLD_VALUE
If the meaning of 'ANY TO THRESHOLD' literal object isn't clear, there really should be more of a description here...
ANY_TO_THRESHOLD
,
Constant Field Valuespublic static final List<LoadBalancingType> VALUES
public static LoadBalancingType[] values()
for (LoadBalancingType c : LoadBalancingType.values()) System.out.println(c);
public static LoadBalancingType 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 LoadBalancingType get(String literal)
public static LoadBalancingType getByName(String name)
public static LoadBalancingType get(int value)
public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<LoadBalancingType>