public static enum DatabaseMatcher.Comparison extends java.lang.Enum<DatabaseMatcher.Comparison>
| Enum Constant and Description | 
|---|
EXACT
Version must match exactly. 
 | 
MAXIMUM
Version is a maximum version (i.e. 
 | 
MINIMUM
Version is a minimum version (i.e. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DatabaseMatcher.Comparison | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DatabaseMatcher.Comparison[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DatabaseMatcher.Comparison EXACT
public static final DatabaseMatcher.Comparison MINIMUM
public static final DatabaseMatcher.Comparison MAXIMUM
public static DatabaseMatcher.Comparison[] values()
for (DatabaseMatcher.Comparison c : DatabaseMatcher.Comparison.values()) System.out.println(c);
public static DatabaseMatcher.Comparison 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