org.opengts.db
Enum ReportURL.Format

java.lang.Object
  extended by java.lang.Enum<ReportURL.Format>
      extended by org.opengts.db.ReportURL.Format
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReportURL.Format>, EnumTools.IntValue, EnumTools.StringValue
Enclosing class:
ReportURL

public static enum ReportURL.Format
extends java.lang.Enum<ReportURL.Format>
implements EnumTools.IntValue, EnumTools.StringValue


Enum Constant Summary
CALLBACK
           
CSV
           
CUSTOM
           
EHTML
           
EMAIL
           
HTML
           
PDF
           
SCHEDULE
           
SOAP
           
TXT
           
URL
           
XLS
           
XLSX
           
XML
           
 
Method Summary
 int getIntValue()
           
 java.lang.String getStringValue()
           
 java.lang.String toString()
           
static ReportURL.Format valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ReportURL.Format[] 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

HTML

public static final ReportURL.Format HTML

XML

public static final ReportURL.Format XML

CSV

public static final ReportURL.Format CSV

XLS

public static final ReportURL.Format XLS

XLSX

public static final ReportURL.Format XLSX

TXT

public static final ReportURL.Format TXT

SOAP

public static final ReportURL.Format SOAP

EHTML

public static final ReportURL.Format EHTML

CUSTOM

public static final ReportURL.Format CUSTOM

SCHEDULE

public static final ReportURL.Format SCHEDULE

URL

public static final ReportURL.Format URL

EMAIL

public static final ReportURL.Format EMAIL

CALLBACK

public static final ReportURL.Format CALLBACK

PDF

public static final ReportURL.Format PDF
Method Detail

values

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

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

valueOf

public static ReportURL.Format 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

getIntValue

public int getIntValue()
Specified by:
getIntValue in interface EnumTools.IntValue

getStringValue

public java.lang.String getStringValue()
Specified by:
getStringValue in interface EnumTools.StringValue

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<ReportURL.Format>