public static enum ExtractBy.Source extends Enum<ExtractBy.Source>
Enum Constant and Description |
---|
RawHtml
extract from the raw html
|
RawText |
SelectedHtml
extract from the content extracted by class extractor
|
Modifier and Type | Method and Description |
---|---|
static ExtractBy.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractBy.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractBy.Source SelectedHtml
public static final ExtractBy.Source RawHtml
public static final ExtractBy.Source RawText
public static ExtractBy.Source[] values()
for (ExtractBy.Source c : ExtractBy.Source.values()) System.out.println(c);
public static ExtractBy.Source 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 © 2017. All rights reserved.