public class ArrayProperty extends ScalarProperty
IS_READONLY, IS_VALIDATING, KEYED_DATADIRTY_MASK, IS_DIRTY, IS_MODIFIED, IS_MOVED, IS_NEW, IS_PHANTOM, IS_REMOVED, NONE| Constructor and Description |
|---|
ArrayProperty(Property parent,
Field field,
int flags) |
| Modifier and Type | Method and Description |
|---|---|
<T> T |
convertTo(Serializable value,
Class<T> toType)
Converts the given normalized value to the given type.
|
ListType |
getType()
Get the type of the field corresponding to this property.
|
boolean |
isContainer()
Whether this property is a container - this means the property value is a
map or a list.
|
boolean |
isNormalized(Object value)
Checks if the given value is a normalized one.
|
Object |
newInstance()
Creates a new and empty instance of a normalized value.
|
Serializable |
normalize(Object value)
Normalizes the given value as dictated by the property type.
|
accept, addEmpty, addValue, addValue, clone, get, get, getChildren, getDirtyChildren, getField, getName, internalGetValue, internalSetValue, isSameAs, toStringareFlagsSet, clearDirtyFlags, clearFlags, getData, getData, getDirtyFlags, getParent, getPath, getRoot, getSchema, getValue, getValue, getValue, getValue, getValueForWrite, init, isComplex, isDirty, isList, isModified, isMoved, isNew, isPhantom, isReadOnly, isRemoved, isScalar, isValidating, iterator, moveTo, remove, removePhantomFlag, resolvePath, resolvePath, setData, setData, setFlags, setIsModified, setReadOnly, setValidating, setValue, setValue, setValue, size, validate, validateTypepublic ListType getType()
PropertygetType in interface PropertygetType in class ScalarPropertypublic boolean isContainer()
Property
Container properties don't have a scalar values. Container values are
computed each time they are requested - by calling on of the
getValue methods - by collecting the values of the child
properties.
isContainer in interface PropertyisContainer in class ScalarPropertypublic boolean isNormalized(Object value)
PropertyNull values are considered as normalized.
isNormalized in interface PropertyisNormalized in class AbstractPropertyvalue - the value to checkpublic Serializable normalize(Object value) throws PropertyConversionException
PropertyNormalized values are the ones that are used for transportation over the net and that are given to the storage implementation to be stored in the repository
Normalized values must be Serializable
If the given value is already normalized it will be returned back.
normalize in interface Propertynormalize in class AbstractPropertyvalue - the value to normalize according to the property typePropertyConversionExceptionpublic <T> T convertTo(Serializable value, Class<T> toType) throws PropertyConversionException
PropertyIf the value has already the given type it will be returned back.
convertTo in interface PropertyconvertTo in class AbstractPropertyvalue - the normalized value to converttoType - the conversion typePropertyConversionException - if the conversion cannot be made
because of type incompatibilitiespublic Object newInstance()
Property
Empty is used in the sense of a value that has not been initialized or
can be considered as an empty value. For example for the String
type the empty value will be the empty string ""
newInstance in interface PropertynewInstance in class AbstractPropertyCopyright © 2013 Nuxeo SA. All Rights Reserved.