public enum Scheme extends Enum<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 Scheme |
fromValue(String scheme) |
String |
toString() |
String |
value() |
static Scheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scheme INTERNET_FACING
public static final Scheme INTERNAL
public static final Scheme UNRECOGNIZED
public static Scheme[] values()
for (Scheme c : Scheme.values()) System.out.println(c);
public static 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()
Copyright © 2009-2013 jclouds. All Rights Reserved.