public enum VersionMatchResult extends Enum<VersionMatchResult>
| Enum Constant and Description |
|---|
MATCHED
When a matcher had a positive match
|
REJECTED
When a matcher decided processing should not continue (a negative match, versions out of range)
|
SKIPPED
The matcher skipped, matching did not apply.
|
| Modifier and Type | Method and Description |
|---|---|
static VersionMatchResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionMatchResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionMatchResult MATCHED
public static final VersionMatchResult REJECTED
public static final VersionMatchResult SKIPPED
public static VersionMatchResult[] values()
for (VersionMatchResult c : VersionMatchResult.values()) System.out.println(c);
public static VersionMatchResult 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 © 2018. All rights reserved.