public enum ModelCompareResultType extends java.lang.Enum<ModelCompareResultType>
| Enum Constant and Description |
|---|
COMPARE_ERROR |
COMPARE_NO_DIFFERENCE |
COMPARE_SUCCESS |
MERGE_ERROR |
MERGE_SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static ModelCompareResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelCompareResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelCompareResultType COMPARE_NO_DIFFERENCE
public static final ModelCompareResultType COMPARE_SUCCESS
public static final ModelCompareResultType COMPARE_ERROR
public static final ModelCompareResultType MERGE_SUCCESS
public static final ModelCompareResultType MERGE_ERROR
public static ModelCompareResultType[] values()
for (ModelCompareResultType c : ModelCompareResultType.values()) System.out.println(c);
public static ModelCompareResultType 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 nullData In Motion Consulting