Package com.solibri.smc.api.checking
Interface ParameterTable
public interface ParameterTable
This interface provides a way to access the rule table parameter.
- Since:
- 9.10.2
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the column count.Returns the ids of the columns.Returns the columns property types.intReturns the row count.<T> TgetValueAt(int row, int column) Returns the value of the cell converted converted to internal units.
- 
Method Details- 
getRowCountint getRowCount()Returns the row count.- Returns:
- the row count
- Since:
- 9.10.2
 
- 
getColumnCountint getColumnCount()Returns the column count.- Returns:
- the column count
- Since:
- 9.10.2
 
- 
getValueAt<T> T getValueAt(int row, int column) Returns the value of the cell converted converted to internal units. ThrowsClassCastExceptionif the type of the value does not match the type required by the context or provided via the generic parameter.- Type Parameters:
- T- the required type for the value
- Parameters:
- row- the row of the cell
- column- the column of the cell
- Returns:
- the value of the cell converted to internal units
- Throws:
- ClassCastException- is thrown if the type of the result does not match the required type
- Since:
- 9.10.2
 
- 
getColumnIDsReturns the ids of the columns.- Returns:
- the ids of the columns
- Since:
- 9.10.2
 
- 
getColumnPropertyTypesList<PropertyType> getColumnPropertyTypes()Returns the columns property types.- Returns:
- the columns property types
- Since:
- 9.10.2
- See Also:
 
 
-