com.adobe.livecycle.formsservice.client
Class OutputType

java.lang.Object
  extended by java.lang.Enum
      extended by com.adobe.livecycle.formsservice.client.OutputType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable

public final class OutputType
extends java.lang.Enum

The output type value that specifies how a form that is rendered as HTML is displayed. This enum value is passed to the HTMLRenderSpec object's setOutputType method.

To see this enumeration value used within a code example, see the Rendering an HTML form using the Java API quick start in Programming with Adobe Experience Manager forms.

See Also:
setOutputType(), Serialized Form

Field Summary
static OutputType BodyTags
          The HTML form is rendered within body tags (not a complete HTML page).
static OutputType FullHTMLTags
          The HTML form is rendered within full HTML tags (a complete HTML page).
 
Method Summary
 int getValue()
          Specifies the output type.
static OutputType valueOf(java.lang.String name)
           
static OutputType[] values()
           
 
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
 

Field Detail

FullHTMLTags

public static final OutputType FullHTMLTags
The HTML form is rendered within full HTML tags (a complete HTML page).


BodyTags

public static final OutputType BodyTags
The HTML form is rendered within body tags (not a complete HTML page).

Method Detail

values

public static OutputType[] values()

valueOf

public static OutputType valueOf(java.lang.String name)

getValue

public int getValue()
Specifies the output type. The following values are valid:

Returns:
An integer value that specifies the HTML form output type.