|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<JobArgs.SearchMode> com.splunk.JobArgs.SearchMode
public static enum JobArgs.SearchMode
Specifies how to create a job using the JobCollection.create(java.lang.String)
method.
Enum Constant Summary | |
---|---|
NORMAL
Searches historical data. |
|
REALTIME
Searches live data. |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static JobArgs.SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static JobArgs.SearchMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final JobArgs.SearchMode NORMAL
public static final JobArgs.SearchMode REALTIME
If both the "earliest_time" and "latest_time" parameters are set to "rt", the search represents all appropriate live data that was received since the start of the search.
If both the "earliest_time" and "latest_time" parameters are set to "rt" followed by a relative time specifier, a sliding window is used where the time bounds of the window are determined by the relative time specifiers and are continuously updated based on current time.
Method Detail |
---|
public static JobArgs.SearchMode[] values()
for (JobArgs.SearchMode c : JobArgs.SearchMode.values()) System.out.println(c);
public static JobArgs.SearchMode 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<JobArgs.SearchMode>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |