com.android.ide.common.rendering.api
Enum SessionParams.RenderingMode

java.lang.Object
  extended by java.lang.Enum<SessionParams.RenderingMode>
      extended by com.android.ide.common.rendering.api.SessionParams.RenderingMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SessionParams.RenderingMode>
Enclosing class:
SessionParams

public static enum SessionParams.RenderingMode
extends java.lang.Enum<SessionParams.RenderingMode>


Enum Constant Summary
FULL_EXPAND
           
H_SCROLL
           
NORMAL
           
V_SCROLL
           
 
Method Summary
 boolean isHorizExpand()
           
 boolean isVertExpand()
           
static SessionParams.RenderingMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SessionParams.RenderingMode[] 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

NORMAL

public static final SessionParams.RenderingMode NORMAL

V_SCROLL

public static final SessionParams.RenderingMode V_SCROLL

H_SCROLL

public static final SessionParams.RenderingMode H_SCROLL

FULL_EXPAND

public static final SessionParams.RenderingMode FULL_EXPAND
Method Detail

values

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

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

valueOf

public static SessionParams.RenderingMode 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

isHorizExpand

public boolean isHorizExpand()

isVertExpand

public boolean isVertExpand()