public enum MatchModeEnum extends Enum<MatchModeEnum>
| Enum Constant and Description |
|---|
AND
And match mode enum.
|
OR
Or match mode enum.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
getMatchModeByCode(int code)
get match mode name by code.
|
static MatchModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchModeEnum AND
public static final MatchModeEnum OR
public static MatchModeEnum[] values()
for (MatchModeEnum c : MatchModeEnum.values()) System.out.println(c);
public static MatchModeEnum 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 static String getMatchModeByCode(int code)
code - match mode code.Copyright © 2021 The Apache Software Foundation. All rights reserved.