public enum IntegrationDeploymentState extends Enum<IntegrationDeploymentState>
| Enum Constant and Description |
|---|
Error
An error
IntegrationDeployment occurred while publishing the integration. |
Pending
The
IntegrationDeployment is being transitioned to a new state. |
Published
IntegrationDeployment is published and running. |
Unpublished
IntegrationDeployment has is not published and is not running.
|
| Modifier and Type | Method and Description |
|---|---|
static IntegrationDeploymentState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrationDeploymentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrationDeploymentState Published
IntegrationDeployment is published and running.public static final IntegrationDeploymentState Unpublished
public static final IntegrationDeploymentState Error
IntegrationDeployment occurred while publishing the integration.public static final IntegrationDeploymentState Pending
IntegrationDeployment is being transitioned to a new state.public static IntegrationDeploymentState[] values()
for (IntegrationDeploymentState c : IntegrationDeploymentState.values()) System.out.println(c);
public static IntegrationDeploymentState 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 © 2016–2019 Red Hat. All rights reserved.