public enum MDSRepositoryChangeType extends java.lang.Enum<MDSRepositoryChangeType>
| Enum Constant and Description |
|---|
CREATE
A rule dictionary was created.
|
DELETE
A rule dictionary was deleted.
|
RENAME
A rule dictionary was renamed.
|
UPDATE
A rule dictionary was updated.
|
| Modifier and Type | Method and Description |
|---|---|
static MDSRepositoryChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MDSRepositoryChangeType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final MDSRepositoryChangeType CREATE
public static final MDSRepositoryChangeType DELETE
public static final MDSRepositoryChangeType RENAME
public static final MDSRepositoryChangeType UPDATE
public static MDSRepositoryChangeType[] values()
for (MDSRepositoryChangeType c : MDSRepositoryChangeType.values())
System.out.println(c);
public static MDSRepositoryChangeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null