public enum PropertyStatus extends Enum<PropertyStatus>
| Enum Constant and Description |
|---|
CHANGED
Value of property in primary mutation file was changed or at least one mutation property status is not equals to UNCHANGED.
|
MISSING
Key for at least one secondary mutation is missing or whole secondary mutation properties file doesn't exists
|
NEW
Value of property is new (generally)
|
UNCHANGED
Value of property in primary mutation file is unchanged, all mutations is also translated so no translation is needed
|
| Modifier and Type | Method and Description |
|---|---|
static PropertyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyStatus NEW
public static final PropertyStatus CHANGED
public static final PropertyStatus MISSING
public static final PropertyStatus UNCHANGED
public static PropertyStatus[] values()
for (PropertyStatus c : PropertyStatus.values()) System.out.println(c);
public static PropertyStatus 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 © 2025 FG Forrest, a.s.. All rights reserved.