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