public enum PropertyType extends Enum<PropertyType>
Enum Constant and Description |
---|
ACL |
ARRAY_BINARY |
ARRAY_BOOLEAN |
ARRAY_DATETIME |
ARRAY_DOUBLE |
ARRAY_LONG |
ARRAY_STRING |
BINARY |
BOOLEAN |
COLL_ACL |
DATETIME |
DOUBLE |
LONG |
STRING |
Modifier and Type | Method and Description |
---|---|
Serializable[] |
collectionToArray(Collection<Serializable> collection) |
static PropertyType |
fromFieldType(Type fieldType,
boolean array)
Converts a Nuxeo core schema field type into a property type.
|
PropertyType |
getArrayBaseType() |
Serializable[] |
getEmptyArray() |
boolean |
isArray() |
Serializable |
normalize(Object value)
Normalizes a scalar value of this type.
|
Serializable[] |
normalize(Object[] value)
Normalizes an array value of this type.
|
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType STRING
public static final PropertyType BOOLEAN
public static final PropertyType LONG
public static final PropertyType DOUBLE
public static final PropertyType DATETIME
public static final PropertyType BINARY
public static final PropertyType ACL
public static final PropertyType ARRAY_STRING
public static final PropertyType ARRAY_BOOLEAN
public static final PropertyType ARRAY_LONG
public static final PropertyType ARRAY_DOUBLE
public static final PropertyType ARRAY_DATETIME
public static final PropertyType ARRAY_BINARY
public static final PropertyType COLL_ACL
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic boolean isArray()
public PropertyType getArrayBaseType()
public Serializable[] getEmptyArray()
public Serializable[] collectionToArray(Collection<Serializable> collection)
public Serializable normalize(Object value)
value
- the value to normalizeIllegalArgumentException
public Serializable[] normalize(Object[] value)
A null
value will be normalized to an empty array.
value
- the array to normalizeIllegalArgumentException
public static PropertyType fromFieldType(Type fieldType, boolean array)
fieldType
- the field type to convertarray
- true
if an array type is requiredCopyright © 2015 Nuxeo SA. All rights reserved.