public static enum LoadBalancer.Scheme extends Enum<LoadBalancer.Scheme>
Enum Constant and Description |
---|
INTERNAL
the LoadBalancer has a publicly resolvable DNS name that resolves to private IP addresses.
|
INTERNET_FACING
the LoadBalancer has a publicly resolvable DNS name that resolves to public IP addresses
|
UNRECOGNIZED
The scheme was returned unrecognized.
|
Modifier and Type | Method and Description |
---|---|
static LoadBalancer.Scheme |
fromValue(String scheme) |
String |
toString() |
String |
value() |
static LoadBalancer.Scheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadBalancer.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadBalancer.Scheme INTERNET_FACING
public static final LoadBalancer.Scheme INTERNAL
public static final LoadBalancer.Scheme UNRECOGNIZED
public static LoadBalancer.Scheme[] values()
for (LoadBalancer.Scheme c : LoadBalancer.Scheme.values()) System.out.println(c);
public static LoadBalancer.Scheme 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 value()
public String toString()
toString
in class Enum<LoadBalancer.Scheme>
public static LoadBalancer.Scheme fromValue(String scheme)
Copyright © 2009-2012 jclouds. All Rights Reserved.