Package com.solibri.smc.api.ito
Interface ItoColumn
-
public interface ItoColumnItoColumn represent a single column definition in an information takeoff.- Since:
- 9.10.8
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Returns the name of the column.PropertyTypegetType()Returns the type of the value that this column produces.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the column.- Returns:
- the name of the column
-
getType
PropertyType getType()
Returns the type of the value that this column produces. This could be for examplePropertyType.LENGTHfor length measures, orPropertyType.STRINGfor free-form text values. The type can be used to read the values from a takeoff in their proper form instead of having to handle all of them as generic Strings. The current implementation does not yet support all possibilities that Solibri actually uses, but tries to cover the most important ones.- Returns:
- the type
-
-