public interface ValueNodeContainer
| Modifier and Type | Method and Description |
|---|---|
ValueNodeContainer |
addNull(FieldType type)
Adds a typed
null value to this container. |
ValueNodeContainer |
addValue(FieldType type,
Object value)
Adds a value with the specified
FieldType to this container. |
ValueNodeContainer |
addValue(Object value)
Adds a value to this container, inferring the
FieldType from the value's class. |
boolean |
hasValue()
Returns
true if this container has had any value added, including null. |
ValueNodeContainer addValue(FieldType type, Object value)
FieldType to this container.type - the field type of the value to add, or null to infer the typevalue - the value to add, may be nullValueNodeContainer addValue(Object value)
FieldType from the value's class.value - the value to add, may be nullValueNodeContainer addNull(FieldType type)
null value to this container.type - the field type of the null value to addboolean hasValue()
true if this container has had any value added, including null.
Otherwise, it returns false.Copyright (c) 2006-2026 North Concepts Inc. All Rights Reserved.