public enum ReorderingRuleMatchType extends java.lang.Enum<ReorderingRuleMatchType>
| Enum Constant and Description |
|---|
CONTENT_TYPE_IS |
FILE_EXTENSION_MATCHES |
MANUAL_CONDITION |
RESULT_CONTAINS_KEYWORD |
RESULT_HAS_TAG |
TITLE_CONTAINS_KEYWORD |
TITLE_MATCHES_KEYWORD |
URL_EXACTLY_MATCHES |
URL_STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static ReorderingRuleMatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReorderingRuleMatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReorderingRuleMatchType CONTENT_TYPE_IS
public static final ReorderingRuleMatchType FILE_EXTENSION_MATCHES
public static final ReorderingRuleMatchType MANUAL_CONDITION
public static final ReorderingRuleMatchType RESULT_CONTAINS_KEYWORD
public static final ReorderingRuleMatchType RESULT_HAS_TAG
public static final ReorderingRuleMatchType TITLE_CONTAINS_KEYWORD
public static final ReorderingRuleMatchType TITLE_MATCHES_KEYWORD
public static final ReorderingRuleMatchType URL_EXACTLY_MATCHES
public static final ReorderingRuleMatchType URL_STARTS_WITH
public static ReorderingRuleMatchType 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 static ReorderingRuleMatchType[] values()
for (ReorderingRuleMatchType c : ReorderingRuleMatchType.values()) System.out.println(c);