Package org.alfresco.service.cmr.search
Interface ResultSetColumn
-
public interface ResultSetColumn
The metadata for a column in a result set. All columns should have a data type, they may have a property type.- Author:
- andyh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QName
getDataType()
The type of the columnString
getName()
The column nameQName
getPropertyType()
The property definition if there is one for the column
-
-
-
Method Detail
-
getName
String getName()
The column name- Returns:
- - the column name
-
getDataType
QName getDataType()
The type of the column- Returns:
- - the data type for the column
-
getPropertyType
QName getPropertyType()
The property definition if there is one for the column- Returns:
- - the property definition or null if it does not make sense for the column
-
-