@PublicApi public enum MatchEvent extends Enum<MatchEvent>
Enum Constant and Description |
---|
INVERSE_MATCH
The issue currently does not match the given condition
|
MATCH
The issue currently matches the given condition
|
Modifier and Type | Method and Description |
---|---|
boolean |
isInverseMatch() |
boolean |
isMatch() |
static MatchEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchEvent MATCH
public static final MatchEvent INVERSE_MATCH
public static MatchEvent[] values()
for (MatchEvent c : MatchEvent.values()) System.out.println(c);
public static MatchEvent 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 boolean isMatch()
public boolean isInverseMatch()
Copyright © 2017 Atlassian. All rights reserved.