public enum MatchMode extends Enum<MatchMode>
Enum Constant and Description |
---|
CONTAINS |
ENDS_WITH |
EXACTLY_MATCHES |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NULL |
STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
boolean |
isExact()
Returns true if this value represents an exact match mode.
|
static MatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchMode EXACTLY_MATCHES
public static final MatchMode STARTS_WITH
public static final MatchMode ENDS_WITH
public static final MatchMode CONTAINS
public static final MatchMode LESS_THAN
public static final MatchMode LESS_THAN_OR_EQUAL
public static final MatchMode GREATER_THAN
public static final MatchMode GREATER_THAN_OR_EQUAL
public static final MatchMode NULL
public static MatchMode[] values()
for (MatchMode c : MatchMode.values()) System.out.println(c);
public static MatchMode 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 isExact()
Copyright © 2020 Atlassian. All rights reserved.