com.google.gwt.visualization.client.visualizations
Enum AnnotatedTimeLine.WindowMode

java.lang.Object
  extended by java.lang.Enum<AnnotatedTimeLine.WindowMode>
      extended by com.google.gwt.visualization.client.visualizations.AnnotatedTimeLine.WindowMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AnnotatedTimeLine.WindowMode>
Enclosing class:
AnnotatedTimeLine

public static enum AnnotatedTimeLine.WindowMode
extends java.lang.Enum<AnnotatedTimeLine.WindowMode>

Flash/IE "wmode" parameter. The transparent Flash content, absolute positioning, and layering capabilities available in Internet Explorer 4.0.


Enum Constant Summary
OPAQUE
          Makes the application hide everything behind it on the page.
TRANSPARENT
          Makes the background of the HTML page show through all the transparent portions of the application and can slow animation performance.
WINDOW
          Plays the application in its own rectangular window on a web page.
 
Method Summary
 java.lang.String getParameter()
          Get the String representation of the WindowMode.
static AnnotatedTimeLine.WindowMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AnnotatedTimeLine.WindowMode[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OPAQUE

public static final AnnotatedTimeLine.WindowMode OPAQUE
Makes the application hide everything behind it on the page.


TRANSPARENT

public static final AnnotatedTimeLine.WindowMode TRANSPARENT
Makes the background of the HTML page show through all the transparent portions of the application and can slow animation performance.


WINDOW

public static final AnnotatedTimeLine.WindowMode WINDOW
Plays the application in its own rectangular window on a web page. WINDOW indicates that the Flash application has no interaction with HTML layers and is always the topmost item.

Method Detail

values

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

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

valueOf

public static AnnotatedTimeLine.WindowMode 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

getParameter

public java.lang.String getParameter()
Get the String representation of the WindowMode.

Returns:
the String representation of the WindowMode.