Package com.axway.apim.api.model
Enum RemoteHost.LoadBalancing
- java.lang.Object
-
- java.lang.Enum<RemoteHost.LoadBalancing>
-
- com.axway.apim.api.model.RemoteHost.LoadBalancing
-
- All Implemented Interfaces:
Serializable,Comparable<RemoteHost.LoadBalancing>
- Enclosing class:
- RemoteHost
public static enum RemoteHost.LoadBalancing extends Enum<RemoteHost.LoadBalancing>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description responseTimeroundRobin
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RemoteHost.LoadBalancingvalueOf(String name)Returns the enum constant of this type with the specified name.static RemoteHost.LoadBalancing[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
roundRobin
public static final RemoteHost.LoadBalancing roundRobin
-
responseTime
public static final RemoteHost.LoadBalancing responseTime
-
-
Method Detail
-
values
public static RemoteHost.LoadBalancing[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RemoteHost.LoadBalancing c : RemoteHost.LoadBalancing.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemoteHost.LoadBalancing valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-