@OpenApiAll public enum RwMergeModeConstraint extends java.lang.Enum<RwMergeModeConstraint>
| Enum Constant and Description |
|---|
DECOMPOSITION
Decompositions compatibility - particular module should be branch as the main project, it can
be used in the contributor project or in other modules that qualify for read-write module
merge as well.
|
PRIVATE_PART
Particular module shall not have changes in it's unshared part since the ancestor project
version.
|
| Modifier and Type | Method and Description |
|---|---|
static RwMergeModeConstraint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RwMergeModeConstraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RwMergeModeConstraint DECOMPOSITION
public static final RwMergeModeConstraint PRIVATE_PART
public static RwMergeModeConstraint[] values()
for (RwMergeModeConstraint c : RwMergeModeConstraint.values()) System.out.println(c);
public static RwMergeModeConstraint 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