public enum FailMode extends Enum<FailMode>
| Enum Constant and Description |
|---|
FAIL_ON_MATCH |
FAIL_ON_NOT_MATCH |
| Modifier and Type | Method and Description |
|---|---|
static FailMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FailMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailMode FAIL_ON_MATCH
public static final FailMode FAIL_ON_NOT_MATCH
public static FailMode[] values()
for (FailMode c : FailMode.values()) System.out.println(c);
public static FailMode 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 © 2024 MuleSoft, Inc.. All rights reserved.