public static enum BindingsEndpoint.State extends Enum<BindingsEndpoint.State>
| Enum Constant and Description |
|---|
PAUSED
Paused state of a binding.
|
RESUMED
Resumed state of a binding.
|
STARTED
Started state of a binding.
|
STOPPED
Stopped state of a binding.
|
| Modifier and Type | Method and Description |
|---|---|
static BindingsEndpoint.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingsEndpoint.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingsEndpoint.State STARTED
public static final BindingsEndpoint.State STOPPED
public static final BindingsEndpoint.State PAUSED
public static final BindingsEndpoint.State RESUMED
public static BindingsEndpoint.State[] values()
for (BindingsEndpoint.State c : BindingsEndpoint.State.values()) System.out.println(c);
public static BindingsEndpoint.State 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 nullCopyright © 2021 Pivotal Software, Inc.. All rights reserved.