public static enum JobArgs.SearchMode extends Enum<JobArgs.SearchMode>
JobCollection.create(java.lang.String)
method.Enum Constant and Description |
---|
NORMAL
Searches historical data.
|
REALTIME
Searches live data.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static JobArgs.SearchMode |
valueOf(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.
|
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.
public static JobArgs.SearchMode[] values()
for (JobArgs.SearchMode c : JobArgs.SearchMode.values()) System.out.println(c);
public static JobArgs.SearchMode 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 toString()
toString
in class Enum<JobArgs.SearchMode>
Copyright © 2022 Splunk, Inc.. All rights reserved.