public static enum PluginKeyPatternsPredicate.MatchType extends Enum<PluginKeyPatternsPredicate.MatchType>
| Enum Constant and Description |
|---|
MATCHES_ANY
Specifies a PluginPredicate which matches if any one of a given list of
included regular expressions is matched.
|
MATCHES_NONE
Specifies a PluginPredicate which matches if none of a given list of
excluded regular expressions is matched.
|
| Modifier and Type | Method and Description |
|---|---|
abstract String |
buildRegularExpression(Collection<String> parts) |
abstract boolean |
processMatcher(Matcher matcher) |
static PluginKeyPatternsPredicate.MatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginKeyPatternsPredicate.MatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginKeyPatternsPredicate.MatchType MATCHES_ANY
public static final PluginKeyPatternsPredicate.MatchType MATCHES_NONE
public static PluginKeyPatternsPredicate.MatchType[] values()
for (PluginKeyPatternsPredicate.MatchType c : PluginKeyPatternsPredicate.MatchType.values()) System.out.println(c);
public static PluginKeyPatternsPredicate.MatchType 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 nullpublic abstract String buildRegularExpression(Collection<String> parts)
public abstract boolean processMatcher(Matcher matcher)
Copyright © 2019 Atlassian. All rights reserved.