Showing posts with label Alfresco data types. Show all posts
Showing posts with label Alfresco data types. Show all posts

Thursday, July 14, 2011

Alfresco commonly used data types (out of the box)

Commonly used data types out of the box are:
  • d:text: A text value, a character string
  • d:mltext: A multilingual text value where many localized representations of the text value may be held
  • d:content: An arbitrarily long text or binary stream
  • d:int: An integer value (java.lang.Integer equivalent)
  • d:long: A long value (java.lang.Long equivalent)
  • d:float: A float value (java.lang.Float equivalent)
  • d:double: A double value (java.lang.Double equivalent)
  • d:date: A date value (java.lang.Date equivalent)
  • d:datetime: A date and time value (java.lang.Date equivalent)
  • d:boolean: A boolean value (java.lang.Boolean equivalent)
  • d:any: Any value, regardless of type

Original source link:
http://docs.alfresco.com/3.4/index.jsp?topic=%2Fcom.alfresco.Enterprise_3_4_0.doc%2Fconcepts%2Fmetadata-model-props.html

Bye...