com.vaadin.flow.internal.nodefeature.
Class NodeProperties
- java.lang.Object
-
- com.vaadin.flow.internal.nodefeature.NodeProperties
-
public final class NodeProperties extends Object
Various node properties' ids.
For internal use only. May be renamed or removed in a future release.
Since:
1.0.
Author:
Vaadin Ltd
-
-
Field Summary
Fields Modifier and Type Field Description static String
ID
Key for id property.
static String
IN_MEMORY_CHILD
JsonObject in-memory type value for
VirtualChildrenList
.static String
INJECT_BY_ID
JsonObject
@id
type value forVirtualChildrenList
.static String
PAYLOAD
Key for
ElementData.getPayload()
.static String
SHADOW_ROOT
Key for
ShadowRootData
.static String
TAG
Key for
ElementData.getTag()
.static String
TEMPLATE_IN_TEMPLATE
JsonObject template-in-template type value for
VirtualChildrenList
.static String
TEXT
Key for
TextNodeMap.getText()
.static String
TYPE
JsonObject type key for
VirtualChildrenList
.static String
URI_ATTRIBUTE
The property in Json object which marks the object as special value transmitting URI (not just any string).
static String
VALUE
Key for
BasicTypeValue.getValue()
.static String
VISIBILITY_BOUND_PROPERTY
The property value used on the client side only in addition to
VISIBLE
.static String
VISIBILITY_HIDDEN_PROPERTY
The property used on the client side only in addition to
VISIBLE
.static String
VISIBILITY_STYLE_DISPLAY_PROPERTY
The property used on the client side only in addition to
VISIBLE
.static String
VISIBLE
Key for
ElementData.isVisible()
.
-
-
-
Field Detail
-
TAG
public static final String TAG
Key for
ElementData.getTag()
.See Also:
-
PAYLOAD
public static final String PAYLOAD
Key for
ElementData.getPayload()
.See Also:
-
TEXT
public static final String TEXT
Key for
TextNodeMap.getText()
.See Also:
-
SHADOW_ROOT
public static final String SHADOW_ROOT
Key for
ShadowRootData
.See Also:
-
VALUE
public static final String VALUE
Key for
BasicTypeValue.getValue()
.See Also:
-
TYPE
public static final String TYPE
JsonObject type key for
VirtualChildrenList
.See Also:
-
IN_MEMORY_CHILD
public static final String IN_MEMORY_CHILD
JsonObject in-memory type value for
VirtualChildrenList
.See Also:
-
INJECT_BY_ID
public static final String INJECT_BY_ID
JsonObject
@id
type value forVirtualChildrenList
.See Also:
-
TEMPLATE_IN_TEMPLATE
public static final String TEMPLATE_IN_TEMPLATE
JsonObject template-in-template type value for
VirtualChildrenList
.See Also:
-
VISIBLE
public static final String VISIBLE
Key for
ElementData.isVisible()
.See Also:
-
ID
public static final String ID
Key for id property.
See Also:
-
VISIBILITY_BOUND_PROPERTY
public static final String VISIBILITY_BOUND_PROPERTY
The property value used on the client side only in addition to
VISIBLE
.See Also:
-
VISIBILITY_HIDDEN_PROPERTY
public static final String VISIBILITY_HIDDEN_PROPERTY
The property used on the client side only in addition to
VISIBLE
. Stores the client side value of "hidden" property.See Also:
-
VISIBILITY_STYLE_DISPLAY_PROPERTY
public static final String VISIBILITY_STYLE_DISPLAY_PROPERTY
The property used on the client side only in addition to
VISIBLE
. It stores the client side value of the CSS "display" property to be able to restore when making a hidden element visible again. Used only when the element is inside a shadow root, and the CSS "display: none" is set in addition the "hidden" attribute.See Also:
-
URI_ATTRIBUTE
public static final String URI_ATTRIBUTE
The property in Json object which marks the object as special value transmitting URI (not just any string).
Used in the
ElementAttributeMap
.See Also:
-
-