public enum EmbeddedPosition extends java.lang.Enum<EmbeddedPosition> implements ValueEnum
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static EmbeddedPosition |
valueOf(java.lang.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.
|
public static final EmbeddedPosition EXPAND
virtualScrolling
should be enabled.
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "expand".
public static final EmbeddedPosition WITHIN
Canvas.snapTo
positioning settings are also
allowed and refer to the rectangle of the record or cell. Note that for components embedded within cells, cell align and
vAlign will be used if snapTo is unset (so top / left alignment of cell content will map to snapTo of "TL", etc).
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "within".
public static EmbeddedPosition[] values()
for (EmbeddedPosition c : EmbeddedPosition.values()) System.out.println(c);
public static EmbeddedPosition valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null