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