public enum ChangeType extends Enum<ChangeType>
| Enum Constant and Description |
|---|
CREATE
Enum value Create.
|
DELETE
Enum value Delete.
|
DEPLOY
Enum value Deploy.
|
IGNORE
Enum value Ignore.
|
MODIFY
Enum value Modify.
|
NO_CHANGE
Enum value NoChange.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeType |
fromString(String value)
Parses a serialized value to a ChangeType instance.
|
String |
toString() |
static ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeType CREATE
public static final ChangeType DELETE
public static final ChangeType IGNORE
public static final ChangeType DEPLOY
public static final ChangeType NO_CHANGE
public static final ChangeType MODIFY
public static ChangeType[] values()
public static ChangeType 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 static ChangeType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ChangeType>Copyright © 2021 Microsoft Corporation. All rights reserved.