com.splunk
Enum JobEventsArgs.OutputMode

java.lang.Object
  extended by java.lang.Enum<JobEventsArgs.OutputMode>
      extended by com.splunk.JobEventsArgs.OutputMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JobEventsArgs.OutputMode>
Enclosing class:
JobEventsArgs

public static enum JobEventsArgs.OutputMode
extends java.lang.Enum<JobEventsArgs.OutputMode>

Specifies the format for the returned output.


Enum Constant Summary
ATOM
          Returns output in Atom format.
CSV
          Returns output in CSV format.
JSON
          Returns output in JSON format.
JSON_COLS
          Returns output in JSON_COLS format.
JSON_ROWS
          Returns output in JSON_ROWS format.
RAW
          Returns output in raw format.
XML
          Returns output in XML format.
 
Method Summary
 java.lang.String toString()
           
static JobEventsArgs.OutputMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobEventsArgs.OutputMode[] 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

ATOM

public static final JobEventsArgs.OutputMode ATOM
Returns output in Atom format.


CSV

public static final JobEventsArgs.OutputMode CSV
Returns output in CSV format.


JSON

public static final JobEventsArgs.OutputMode JSON
Returns output in JSON format.


JSON_COLS

public static final JobEventsArgs.OutputMode JSON_COLS
Returns output in JSON_COLS format.


JSON_ROWS

public static final JobEventsArgs.OutputMode JSON_ROWS
Returns output in JSON_ROWS format.


RAW

public static final JobEventsArgs.OutputMode RAW
Returns output in raw format.


XML

public static final JobEventsArgs.OutputMode XML
Returns output in XML format.

Method Detail

values

public static JobEventsArgs.OutputMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (JobEventsArgs.OutputMode c : JobEventsArgs.OutputMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JobEventsArgs.OutputMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<JobEventsArgs.OutputMode>
Returns:
The REST API value for this enumerated constant.