public enum SearchConditionType extends Enum<SearchConditionType>
| Enum Constant and Description |
|---|
BEING_DESCENDANT_OF |
CLASS |
EXACT_TEXT |
NAME |
ORDINAL_NUMBER |
POSITION_BASED |
TEXT_CONTAINS |
TEXT_REGEX_MATCH |
| Modifier and Type | Method and Description |
|---|---|
String |
getMethodName() |
String |
toString() |
static SearchConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchConditionType CLASS
public static final SearchConditionType EXACT_TEXT
public static final SearchConditionType TEXT_CONTAINS
public static final SearchConditionType TEXT_REGEX_MATCH
public static final SearchConditionType BEING_DESCENDANT_OF
public static final SearchConditionType ORDINAL_NUMBER
public static final SearchConditionType NAME
public static final SearchConditionType POSITION_BASED
public static SearchConditionType[] values()
for (SearchConditionType c : SearchConditionType.values()) System.out.println(c);
public static SearchConditionType 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 String getMethodName()
public String toString()
toString in class Enum<SearchConditionType>Copyright © 2019. All rights reserved.