|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Scheme>
org.jclouds.elb.domain.Scheme
public enum Scheme
Specifies the type of LoadBalancer. This option is only available for LoadBalancers attached to an Amazon VPC.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Scheme INTERNET_FACING
public static final Scheme INTERNAL
public static final Scheme UNRECOGNIZED
| Method Detail |
|---|
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 name
NullPointerException - if the argument is nullpublic String value()
public String toString()
toString in class Enum<Scheme>public static Scheme fromValue(String scheme)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||