Package migratedb.v1.core.internal.info
Enum ValidationMatch
- java.lang.Object
-
- java.lang.Enum<ValidationMatch>
-
- migratedb.v1.core.internal.info.ValidationMatch
-
- All Implemented Interfaces:
Serializable,Comparable<ValidationMatch>
public enum ValidationMatch extends Enum<ValidationMatch>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FUTUREIGNOREDMISSINGOUT_OF_ORDERPENDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationMatchvalueOf(String name)Returns the enum constant of this type with the specified name.static ValidationMatch[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUT_OF_ORDER
public static final ValidationMatch OUT_OF_ORDER
-
PENDING
public static final ValidationMatch PENDING
-
MISSING
public static final ValidationMatch MISSING
-
IGNORED
public static final ValidationMatch IGNORED
-
FUTURE
public static final ValidationMatch FUTURE
-
-
Method Detail
-
values
public static ValidationMatch[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ValidationMatch c : ValidationMatch.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationMatch valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-