PropertyChangeType Enum
Definition
Defines values for PropertyChangeType.
public enum PropertyChangeType extends Enum<PropertyChangeType>
- Inheritance
-
java.lang.Object
java.lang.Enum
PropertyChangeType
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
|
ARRAY
|
The property is an array and contains nested changes.
|
|
CREATE
|
The property does not exist in the current state but is present in the desired state. The property will be created when the deployment is executed.
|
|
DELETE
|
The property exists in the current state and is missing from the desired state. It will be deleted when the deployment is executed.
|
|
MODIFY
|
The property exists in both current and desired state and is different. The value of the property will change when the deployment is executed.
|
Methods
Parses a serialized value to a PropertyChangeType instance.
public static PropertyChangeType fromString(String value)
Parameters
- value
-
java.lang.String
the serialized value to parse.
Returns
the parsed PropertyChangeType object, or null if unable to parse.
public String toString()
Parameters
- value
-
java.lang.String
the serialized value to parse.
Returns
- Overrides
-
java.lang.Enum.toString()
public static PropertyChangeType valueOf(String name)
Parameters
Returns
public static PropertyChangeType[] values()
Parameters
- value
-
java.lang.String
the serialized value to parse.
Returns
Applies to