Uses of Class
com.logicaldoc.core.metadata.Attribute
-
Packages that use Attribute Package Description com.logicaldoc.core.metadata Package that collects the template and attribute sets definitions.
Many objects of the LogicalDOC platform are extensible and can store your custom metadata, they are all those that extends theExtensibleObject
. -
-
Uses of Attribute in com.logicaldoc.core.metadata
Methods in com.logicaldoc.core.metadata that return Attribute Modifier and Type Method Description Attribute
ExtensibleObject. getAttribute(String name)
Attribute
ExtensibleObject. getAttributeAtPosition(int position)
Attribute
ExtensibleObject. setValue(String name, Object value)
Methods in com.logicaldoc.core.metadata that return types with arguments of type Attribute Modifier and Type Method Description Map<String,Attribute>
AttributeSetDAO. findAttributes(long tenantId, Long setId)
Gets the map of attributes defined in the given tenant or setMap<String,Attribute>
HibernateAttributeSetDAO. findAttributes(long tenantId, Long setId)
Returns a TreeMap so the key set is alphabetically orderedMap<String,Attribute>
ExtensibleObject. getAttributes()
List<Attribute>
ExtensibleObject. getValueAttributes(String name)
List<Attribute>
ExtensibleObject. setValues(String name, Object[] values)
Methods in com.logicaldoc.core.metadata with parameters of type Attribute Modifier and Type Method Description int
Attribute. compareTo(Attribute o)
void
ExtensibleObject. setAttribute(String name, Attribute attribute)
Puts a new attribute, if the attribute already exists his position and label are left untouchedMethod parameters in com.logicaldoc.core.metadata with type arguments of type Attribute Modifier and Type Method Description void
ExtensibleObject. setAttributes(Map<String,Attribute> attributes)
-