public class FacetValue extends RefDataClass
CubeGrid
and FacetChart
classes (contained by facets).id
factoryCreated, factoryProperties
Constructor and Description |
---|
FacetValue() |
FacetValue(java.lang.Integer id) |
FacetValue(java.lang.Integer id,
java.lang.String title) |
FacetValue(java.lang.Integer id,
java.lang.String title,
java.lang.Integer parentId) |
FacetValue(com.google.gwt.core.client.JavaScriptObject jsObj) |
FacetValue(java.lang.String id) |
FacetValue(java.lang.String id,
java.lang.String title) |
FacetValue(java.lang.String id,
java.lang.String title,
java.lang.String parentId) |
Modifier and Type | Method and Description |
---|---|
Alignment |
getAlign()
Default alignment for facet label title and cells for this facetValue.
|
java.lang.String |
getBorderAfter()
CSS line style to apply as a border after this facetValue.
|
java.lang.String |
getBorderBefore()
CSS line style to apply as a border before this facetValue.
|
java.lang.Boolean |
getCanCollapse()
For individual parent facetValues within a hierarchical facet, this flag controls whether an expand/collapse control
will be shown.
|
java.lang.Boolean |
getCanEdit()
Whether cells for this facetValue can be edited.
|
java.lang.Boolean |
getCanMinimize()
If
facet minimizing is enabled, whether this
facet value should show controls to minimize the next facet. |
Alignment |
getCellAlign()
Default alignment of cells (in the body) for this facetValue.
|
java.lang.Boolean |
getCollapsed()
For tree facets, initial collapse state for this node.
|
java.lang.Object |
getId()
id of this facetValue.
|
java.lang.Integer |
getIdAsInt()
id of this facetValue.
|
java.lang.String |
getIdAsString()
id of this facetValue.
|
java.lang.Boolean |
getIsMinimizeValue()
Used to determine which facetValue is to be shown when the facet is minimized.
|
java.lang.Boolean |
getMinimized()
Initial
minimize state for this node. |
static FacetValue |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
java.lang.String |
getParentId()
For tree facets (
facet.isTree ), id of this facetValue's parent
facetValue. |
java.lang.Integer |
getParentIdAsInt()
For tree facets (
facet.isTree ), id of this facetValue's parent
facetValue. |
java.lang.Integer |
getParentIdAsInteger()
Deprecated.
in favor of
getParentIdAsInt() . |
SelectionBoundary |
getSelectionBoundary()
Selection boundary determining what facets / facetValues can be selected together by drag selection / shift+click
selection.
|
java.lang.String |
getTitle()
User-visible title of this facetValue.
|
java.lang.String |
getTitleHilite()
Hilite style to apply to the title for this facetValue.
|
int |
getWidth()
Width of the cube grid facetValue in pixels.
|
FacetValue |
setAlign(Alignment align)
Default alignment for facet label title and cells for this facetValue.
|
FacetValue |
setBorderAfter(java.lang.String borderAfter)
CSS line style to apply as a border after this facetValue.
|
FacetValue |
setBorderBefore(java.lang.String borderBefore)
CSS line style to apply as a border before this facetValue.
|
FacetValue |
setCanCollapse(java.lang.Boolean canCollapse)
For individual parent facetValues within a hierarchical facet, this flag controls whether an expand/collapse control
will be shown.
|
FacetValue |
setCanEdit(java.lang.Boolean canEdit)
Whether cells for this facetValue can be edited.
|
FacetValue |
setCanMinimize(java.lang.Boolean canMinimize)
If
facet minimizing is enabled, whether this
facet value should show controls to minimize the next facet. |
FacetValue |
setCellAlign(Alignment cellAlign)
Default alignment of cells (in the body) for this facetValue.
|
FacetValue |
setCollapsed(java.lang.Boolean collapsed)
For tree facets, initial collapse state for this node.
|
void |
setId(java.lang.Integer id)
id of this facetValue.
|
void |
setId(java.lang.String id)
id of this facetValue.
|
FacetValue |
setIsMinimizeValue(java.lang.Boolean isMinimizeValue)
Used to determine which facetValue is to be shown when the facet is minimized.
|
FacetValue |
setMinimized(java.lang.Boolean minimized)
Initial
minimize state for this node. |
FacetValue |
setParentId(java.lang.Integer parentId)
For tree facets (
facet.isTree ), id of this facetValue's parent
facetValue. |
FacetValue |
setParentId(java.lang.String parentId)
For tree facets (
facet.isTree ), id of this facetValue's parent
facetValue. |
FacetValue |
setSelectionBoundary(SelectionBoundary selectionBoundary)
Selection boundary determining what facets / facetValues can be selected together by drag selection / shift+click
selection.
|
FacetValue |
setTitle(java.lang.String title)
User-visible title of this facetValue.
|
FacetValue |
setTitleHilite(java.lang.String titleHilite)
Hilite style to apply to the title for this facetValue.
|
FacetValue |
setWidth(int width)
Width of the cube grid facetValue in pixels.
|
getRef, getRef, internalSetID
applyFactoryProperties, doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsDoubleArray, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsLong, getAttributeAsMap, getAttributeAsObject, getAttributeAsRecord, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, isFactoryCreated, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttributeAsJavaObject, setFactoryCreated
public FacetValue()
public FacetValue(com.google.gwt.core.client.JavaScriptObject jsObj)
public FacetValue(java.lang.String id)
public FacetValue(java.lang.String id, java.lang.String title)
public FacetValue(java.lang.String id, java.lang.String title, java.lang.String parentId)
public FacetValue(java.lang.Integer id)
public FacetValue(java.lang.Integer id, java.lang.String title)
public FacetValue(java.lang.Integer id, java.lang.String title, java.lang.Integer parentId)
public static FacetValue getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public FacetValue setAlign(Alignment align)
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.facetValueAlign
).
align
- New align value. Default value is nullFacetValue
instance, for chaining setter callspublic Alignment getAlign()
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.facetValueAlign
).
public FacetValue setBorderAfter(java.lang.String borderAfter)
Note: This property is specific to CubeGrids
.
borderAfter
- New borderAfter value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.String getBorderAfter()
Note: This property is specific to CubeGrids
.
public FacetValue setBorderBefore(java.lang.String borderBefore)
Note: This property is specific to CubeGrids
.
borderBefore
- New borderBefore value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.String getBorderBefore()
Note: This property is specific to CubeGrids
.
public FacetValue setCanCollapse(java.lang.Boolean canCollapse)
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.canCollapseFacets
).
canCollapse
- New canCollapse value. Default value is trueFacetValue
instance, for chaining setter callspublic java.lang.Boolean getCanCollapse()
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.canCollapseFacets
).
public FacetValue setCanEdit(java.lang.Boolean canEdit)
CubeGrid.canEdit
. Note: This property is specific to
CubeGrids
.
canEdit
- New canEdit value. Default value is cubeGrid.canEditFacetValue
instance, for chaining setter callspublic java.lang.Boolean getCanEdit()
CubeGrid.canEdit
. Note: This property is specific to
CubeGrids
.
public FacetValue setCanMinimize(java.lang.Boolean canMinimize)
facet minimizing
is enabled, whether this
facet value should show controls to minimize the next facet. Generally a tree facet should not also allow minimizing
the next facet the interaction of the two types of collapsing can be confusing. Note: This property is
specific to CubeGrids
(see, for example, CubeGrid.canMinimizeFacets
).
canMinimize
- New canMinimize value. Default value is trueFacetValue
instance, for chaining setter callspublic java.lang.Boolean getCanMinimize()
facet minimizing
is enabled, whether this
facet value should show controls to minimize the next facet. Generally a tree facet should not also allow minimizing
the next facet the interaction of the two types of collapsing can be confusing. Note: This property is
specific to CubeGrids
(see, for example, CubeGrid.canMinimizeFacets
).
public FacetValue setCellAlign(Alignment cellAlign)
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.cellAlign
).
cellAlign
- New cellAlign value. Default value is facet.cellAlignFacetValue
instance, for chaining setter callspublic Alignment getCellAlign()
Note: This property is specific to CubeGrids
(see, for example, CubeGrid.cellAlign
).
public FacetValue setCollapsed(java.lang.Boolean collapsed)
Facet.collapsed
. Note: This property is specific to
CubeGrids
.
collapsed
- New collapsed value. Default value is facet.collapsedFacetValue
instance, for chaining setter callspublic java.lang.Boolean getCollapsed()
Facet.collapsed
. Note: This property is specific to
CubeGrids
.
public FacetValue setIsMinimizeValue(java.lang.Boolean isMinimizeValue)
Note: This property is
specific to CubeGrids
. See CubeGrid.canMinimizeFacets
.
isMinimizeValue
- New isMinimizeValue value. Default value is falseFacetValue
instance, for chaining setter callspublic java.lang.Boolean getIsMinimizeValue()
Note: This property is
specific to CubeGrids
. See CubeGrid.canMinimizeFacets
.
public FacetValue setMinimized(java.lang.Boolean minimized)
minimize state
for this node. Defaults
to Facet.minimized
. Note: This property is
specific to CubeGrids
.
minimized
- New minimized value. Default value is facet.minimizedFacetValue
instance, for chaining setter callspublic java.lang.Boolean getMinimized()
minimize state
for this node. Defaults
to Facet.minimized
. Note: This property is
specific to CubeGrids
.
public FacetValue setParentId(java.lang.String parentId)
facet.isTree
), id of this facetValue's parent
facetValue. Note: This property is specific to CubeGrids
.
Note : This is an advanced setting
parentId
- New parentId value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.String getParentId()
facet.isTree
), id of this facetValue's parent
facetValue. Note: This property is specific to CubeGrids
.
public FacetValue setParentId(java.lang.Integer parentId)
facet.isTree
), id of this facetValue's parent
facetValue. Note: This property is specific to CubeGrids
.
Note : This is an advanced setting
parentId
- New parentId value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.Integer getParentIdAsInt()
facet.isTree
), id of this facetValue's parent
facetValue. Note: This property is specific to CubeGrids
.
public FacetValue setSelectionBoundary(SelectionBoundary selectionBoundary)
Note: This property is specific to CubeGrids
.
selectionBoundary
- New selectionBoundary value. Default value is nullFacetValue
instance, for chaining setter callspublic SelectionBoundary getSelectionBoundary()
Note: This property is specific to CubeGrids
.
public FacetValue setTitle(java.lang.String title)
title
- New title value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.String getTitle()
public FacetValue setTitleHilite(java.lang.String titleHilite)
Note: This property is specific to CubeGrids
. See CubeGrid.hilites
.
titleHilite
- New titleHilite value. Default value is nullFacetValue
instance, for chaining setter callspublic java.lang.String getTitleHilite()
Note: This property is specific to CubeGrids
. See CubeGrid.hilites
.
public FacetValue setWidth(int width)
Note: This property is specific to CubeGrids
.
width
- New width value. Default value is facet.widthFacetValue
instance, for chaining setter callspublic int getWidth()
Note: This property is specific to CubeGrids
.
public void setId(java.lang.Integer id)
id
- id Default value is nullpublic void setId(java.lang.String id)
id
- id Default value is nullpublic java.lang.Object getId()
id
- id Default value is nullpublic java.lang.String getIdAsString()
id
- id Default value is nullpublic java.lang.Integer getIdAsInt()
id
- id Default value is nullpublic java.lang.Integer getParentIdAsInteger()
getParentIdAsInt()
.getParentIdAsInt()
.