com.smartgwt.client.types
Enum EmbeddedPosition

java.lang.Object
  extended by java.lang.Enum<EmbeddedPosition>
      extended by com.smartgwt.client.types.EmbeddedPosition
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<EmbeddedPosition>

public enum EmbeddedPosition
extends Enum<EmbeddedPosition>
implements ValueEnum

The position of an embedded ListGrid component with respect to the record or cell.


Enum Constant Summary
EXPAND
          Component should be placed underneath normal record or cell content, expanding the records.
WITHIN
          Component should be placed within the normal area of the record or cell.
 
Method Summary
 String getValue()
           
static EmbeddedPosition valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EmbeddedPosition[] 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

EXPAND

public static final EmbeddedPosition EXPAND
Component should be placed underneath normal record or cell content, expanding the records. Expanding records can result in variable height rows, in which can virtualScrolling should be enabled.


WITHIN

public static final EmbeddedPosition WITHIN
Component should be placed within the normal area of the record or cell. Percentage sizes will be treated as percentages of the record and snapTo positioning settings are also allowed and refer to the rectangle of the record or cell.

Method Detail

values

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

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

valueOf

public static EmbeddedPosition 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

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum