public enum SelectorTypeEnum extends java.lang.Enum<SelectorTypeEnum>
| Enum Constant and Description |
|---|
CUSTOM_FLOW
Or match mode enum.
|
FULL_FLOW
full selector type enum.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode()
get code.
|
java.lang.String |
getName()
get name.
|
static java.lang.String |
getSelectorTypeByCode(int code)
get selector type name by code.
|
static SelectorTypeEnum |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getCode()
public java.lang.String getName()
public static java.lang.String getSelectorTypeByCode(int code)
code - selector type code.Copyright © 2024 The Apache Software Foundation. All rights reserved.