public static enum PlatformRegistry.VersionMatch extends java.lang.Enum<PlatformRegistry.VersionMatch>
| Enum Constant and Description | 
|---|
MATCH_ALL
Match all supplied version numbers. 
 | 
MATCH_EXACT
Same as MATCH_ALL, except that higher versions are not returned 
 | 
MATCH_MAJOR
Match upto the major version ( first digit). 
 | 
MATCH_MINOR
Match upto the minor version number (second digit). 
 | 
MATCH_NONE
Match just PlatformType, ignore version. 
 | 
MATCH_UPDATE
Match upto the update version number (third digit). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
matchRequired()  | 
static PlatformRegistry.VersionMatch | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static PlatformRegistry.VersionMatch[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PlatformRegistry.VersionMatch MATCH_ALL
public static final PlatformRegistry.VersionMatch MATCH_EXACT
public static final PlatformRegistry.VersionMatch MATCH_NONE
public static final PlatformRegistry.VersionMatch MATCH_MAJOR
public static final PlatformRegistry.VersionMatch MATCH_MINOR
public static final PlatformRegistry.VersionMatch MATCH_UPDATE
public static PlatformRegistry.VersionMatch[] values()
for (PlatformRegistry.VersionMatch c : PlatformRegistry.VersionMatch.values()) System.out.println(c);
public static PlatformRegistry.VersionMatch 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 nullpublic int matchRequired()