com.splunk
Enum JobResultsPreviewArgs.OutputMode

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

public static enum JobResultsPreviewArgs.OutputMode
extends java.lang.Enum<JobResultsPreviewArgs.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 JobResultsPreviewArgs.OutputMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobResultsPreviewArgs.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 JobResultsPreviewArgs.OutputMode ATOM
Returns output in Atom format.


CSV

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


JSON

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


JSON_COLS

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


JSON_ROWS

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


RAW

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


XML

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

Method Detail

values

public static JobResultsPreviewArgs.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 (JobResultsPreviewArgs.OutputMode c : JobResultsPreviewArgs.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 JobResultsPreviewArgs.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<JobResultsPreviewArgs.OutputMode>
Returns:
The REST API value for this enumerated constant.