public enum Rule extends Enum<Rule>
Enum Constant and Description |
---|
ALL
原文提取器
|
ARRAY
数组截取提取器
|
CHN
中文提取器
|
CONSTANT
常量提取器
|
CSS
CSS提取器
|
DOMAIN
域名提取器
|
EMAIL
邮件提取器
|
NUM
数字提取器
|
REGEX
正则提取器
|
REMOVE
移除提取器
|
REPLACE
替换提取器
|
SCRIPT
脚本提取器
|
SUBSTR
切割提取器
|
SYSTEM
占位符替换器
|
TEXT
CSS文本提取器
|
URL
URL提取器
|
XPATH
XPATH提取器
|
Modifier and Type | Method and Description |
---|---|
static Rule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rule ALL
public static final Rule CSS
public static final Rule TEXT
public static final Rule XPATH
public static final Rule REGEX
public static final Rule REPLACE
public static final Rule REMOVE
public static final Rule CONSTANT
public static final Rule CHN
public static final Rule NUM
public static final Rule EMAIL
public static final Rule SUBSTR
public static final Rule DOMAIN
public static final Rule SYSTEM
public static final Rule ARRAY
public static final Rule SCRIPT
public static final Rule URL
public static Rule[] values()
for (Rule c : Rule.values()) System.out.println(c);
public static Rule 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 nullCopyright © 2020 Pivotal Software, Inc.. All rights reserved.