public static enum DefaultExceptionMatcher.StringMatch extends Enum<DefaultExceptionMatcher.StringMatch>
| Enum Constant and Description |
|---|
Exact |
IgnoreCase |
IndexOf |
StartsWith |
| Modifier and Type | Method and Description |
|---|---|
boolean |
match(String src,
String comparer) |
static DefaultExceptionMatcher.StringMatch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultExceptionMatcher.StringMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultExceptionMatcher.StringMatch Exact
public static final DefaultExceptionMatcher.StringMatch IgnoreCase
public static final DefaultExceptionMatcher.StringMatch IndexOf
public static final DefaultExceptionMatcher.StringMatch StartsWith
public static DefaultExceptionMatcher.StringMatch[] values()
for (DefaultExceptionMatcher.StringMatch c : DefaultExceptionMatcher.StringMatch.values()) System.out.println(c);
public static DefaultExceptionMatcher.StringMatch 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 2004-2019 Solace Corporation. All rights reserved.