ChangeType Enum

Definition

Defines values for ChangeType.

public enum ChangeType extends Enum<ChangeType>
Inheritance
java.lang.Object
java.lang.Enum
ChangeType

Inherited Members

java.lang.Enum.<T>valueOf(java.lang.Class<T>,java.lang.String) java.lang.Enum.clone() java.lang.Enum.compareTo(E) java.lang.Enum.equals(java.lang.Object) java.lang.Enum.finalize() java.lang.Enum.getDeclaringClass() java.lang.Enum.hashCode() java.lang.Enum.name() java.lang.Enum.ordinal() java.lang.Enum.toString() java.lang.Object.getClass() java.lang.Object.notify() java.lang.Object.notifyAll() java.lang.Object.wait() java.lang.Object.wait(long) java.lang.Object.wait(long,int)

Fields

CREATE

The resource does not exist in the current state but is present in the desired state. The resource will be created when the deployment is executed.

DELETE

The resource exists in the current state and is missing from the desired state. The resource will be deleted when the deployment is executed.

DEPLOY

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource may or may not change.

IGNORE

The resource exists in the current state and is missing from the desired state. The resource will not be deployed or modified when the deployment is executed.

MODIFY

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource will change.

NO_CHANGE

The resource exists in the current state and the desired state and will be redeployed when the deployment is executed. The properties of the resource will not change.

Methods

fromString(String value)

Parses a serialized value to a ChangeType instance.

public static ChangeType fromString(String value)

Parameters

value
java.lang.String

the serialized value to parse.

Returns

the parsed ChangeType object, or null if unable to parse.

toString()

public String toString()

Parameters

value
java.lang.String

the serialized value to parse.

Returns

java.lang.String
Overrides
java.lang.Enum.toString()

valueOf(String name)

public static ChangeType valueOf(String name)

Parameters

name
java.lang.String

Returns

values()

public static ChangeType[] values()

Parameters

value
java.lang.String

the serialized value to parse.

Returns

Applies to