@Portable public enum ChangeType extends Enum<ChangeType>
| Modifier and Type | Method and Description |
|---|---|
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 DATA_MODEL_STATUS_CHANGE
public static final ChangeType OBJECT_NAME_CHANGE
public static final ChangeType CLASS_NAME_CHANGE
public static final ChangeType SUPER_CLASS_NAME_CHANGE
public static final ChangeType PACKAGE_NAME_CHANGE
public static final ChangeType FIELD_NAME_CHANGE
public static final ChangeType FIELD_TYPE_CHANGE
public static final ChangeType FIELD_ANNOTATION_VALUE_CHANGE
public static final ChangeType FIELD_ANNOTATION_ADD_CHANGE
public static final ChangeType FIELD_ANNOTATION_REMOVE_CHANGE
public static final ChangeType TYPE_ANNOTATION_VALUE_CHANGE
public static final ChangeType TYPE_ANNOTATION_ADD_CHANGE
public static final ChangeType TYPE_ANNOTATION_REMOVE_CHANGE
public static final ChangeType METHOD_ADD_CHANGE
public static final ChangeType METHOD_REMOVE_CHANGE
public static final ChangeType METHOD_ANNOTATION_ADD_CHANGE
public static final ChangeType NESTED_CLASS_ADD_CHANGE
public static final ChangeType NESTED_CLASS_REMOVE_CHANGE
public static ChangeType[] values()
for (ChangeType c : ChangeType.values()) System.out.println(c);
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 nullCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.