public enum CrawlMode extends Enum<CrawlMode>
Enum Constant and Description |
---|
FULL_CRAWL
The crawl's mode is a full acquisition
|
INCREMENTAL_CRAWL
The crawl's mode is an incremental acquisition
|
Modifier and Type | Method and Description |
---|---|
static CrawlMode |
fromValue(String v) |
String |
getAbbreviation() |
String |
toString() |
String |
value() |
static CrawlMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrawlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrawlMode FULL_CRAWL
public static final CrawlMode INCREMENTAL_CRAWL
public static CrawlMode[] values()
for (CrawlMode c : CrawlMode.values()) System.out.println(c);
public static CrawlMode 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 value()
public String getAbbreviation()
Copyright © 2007, 2013, Oracle and/or its affiliates. All rights reserved.