public static enum ModuleVersionMatcherPlugin.MatchFlag extends Enum<ModuleVersionMatcherPlugin.MatchFlag>
| Enum Constant and Description |
|---|
MATCH
The
ModuleVersion matches. |
SKIP_CHILDREN
Assume children do not match and must be skipped.
|
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<ModuleVersionMatcherPlugin.MatchFlag> |
MATCH_CONTINUE
EnumSet MatchFlag indicating the
ModuleVersion matches and the children
may also match. |
static EnumSet<ModuleVersionMatcherPlugin.MatchFlag> |
MATCH_SKIP_CHILDREN
EnumSet MatchFlag indicating the
ModuleVersion matches but the children
do not match and must be skipped. |
static EnumSet<ModuleVersionMatcherPlugin.MatchFlag> |
NO_MATCH_CONTINUE
EnumSet MatchFlag indicating the
ModuleVersion does not match but the
children may match. |
static EnumSet<ModuleVersionMatcherPlugin.MatchFlag> |
NO_MATCH_SKIP_CHILDREN
EnumSet MatchFlag indicating the
ModuleVersion does not match and the
children do not match either and must be skipped. |
| Modifier and Type | Method and Description |
|---|---|
static ModuleVersionMatcherPlugin.MatchFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleVersionMatcherPlugin.MatchFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleVersionMatcherPlugin.MatchFlag MATCH
ModuleVersion matches.
The absence of this flag implies the ModuleVersion does not match.
public static final ModuleVersionMatcherPlugin.MatchFlag SKIP_CHILDREN
This flag applies only if the tranversal of the reference graph is parent first.
public static final EnumSet<ModuleVersionMatcherPlugin.MatchFlag> MATCH_CONTINUE
ModuleVersion matches and the children
may also match.public static final EnumSet<ModuleVersionMatcherPlugin.MatchFlag> MATCH_SKIP_CHILDREN
ModuleVersion matches but the children
do not match and must be skipped.public static final EnumSet<ModuleVersionMatcherPlugin.MatchFlag> NO_MATCH_CONTINUE
ModuleVersion does not match but the
children may match.public static final EnumSet<ModuleVersionMatcherPlugin.MatchFlag> NO_MATCH_SKIP_CHILDREN
ModuleVersion does not match and the
children do not match either and must be skipped.public static ModuleVersionMatcherPlugin.MatchFlag[] values()
for (ModuleVersionMatcherPlugin.MatchFlag c : ModuleVersionMatcherPlugin.MatchFlag.values()) System.out.println(c);
public static ModuleVersionMatcherPlugin.MatchFlag 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 © 2015–2017 AZYVA INC.. All rights reserved.