org.pentaho.di.trans.steps.pentahoreporting
Enum PentahoReportingOutputMeta.ProcessorType

java.lang.Object
  extended by java.lang.Enum<PentahoReportingOutputMeta.ProcessorType>
      extended by org.pentaho.di.trans.steps.pentahoreporting.PentahoReportingOutputMeta.ProcessorType
All Implemented Interfaces:
Serializable, Comparable<PentahoReportingOutputMeta.ProcessorType>
Enclosing class:
PentahoReportingOutputMeta

public static enum PentahoReportingOutputMeta.ProcessorType
extends Enum<PentahoReportingOutputMeta.ProcessorType>


Enum Constant Summary
CSV
           
Excel
           
Excel_2007
           
PagedHTML
           
PDF
           
RTF
           
StreamingHTML
           
 
Method Summary
 String getCode()
           
 String getDescription()
           
static String[] getDescriptions()
           
static PentahoReportingOutputMeta.ProcessorType getProcessorTypeByCode(String code)
           
static PentahoReportingOutputMeta.ProcessorType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PentahoReportingOutputMeta.ProcessorType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PDF

public static final PentahoReportingOutputMeta.ProcessorType PDF

PagedHTML

public static final PentahoReportingOutputMeta.ProcessorType PagedHTML

StreamingHTML

public static final PentahoReportingOutputMeta.ProcessorType StreamingHTML

CSV

public static final PentahoReportingOutputMeta.ProcessorType CSV

Excel

public static final PentahoReportingOutputMeta.ProcessorType Excel

Excel_2007

public static final PentahoReportingOutputMeta.ProcessorType Excel_2007

RTF

public static final PentahoReportingOutputMeta.ProcessorType RTF
Method Detail

values

public static PentahoReportingOutputMeta.ProcessorType[] 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 (PentahoReportingOutputMeta.ProcessorType c : PentahoReportingOutputMeta.ProcessorType.values())
    System.out.println(c);

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

valueOf

public static PentahoReportingOutputMeta.ProcessorType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getCode

public String getCode()

getDescription

public String getDescription()

getDescriptions

public static String[] getDescriptions()

getProcessorTypeByCode

public static PentahoReportingOutputMeta.ProcessorType getProcessorTypeByCode(String code)