public enum ServiceBindingResource extends Enum<ServiceBindingResource>
bindResource map in a service instance binding request.| Enum Constant and Description |
|---|
BIND_RESOURCE_KEY_APP |
BIND_RESOURCE_KEY_ROUTE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ServiceBindingResource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceBindingResource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceBindingResource BIND_RESOURCE_KEY_APP
public static final ServiceBindingResource BIND_RESOURCE_KEY_ROUTE
public static ServiceBindingResource[] values()
for (ServiceBindingResource c : ServiceBindingResource.values()) System.out.println(c);
public static ServiceBindingResource 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 toString()
toString in class Enum<ServiceBindingResource>