| Overview | Group | Tree | Graph | Deprecated | Index | Concepts |

IloTupleSet schema.
Defines the type of the columns in the declared
IloTupleSet schema.
| Method Summary | |
|---|---|
public void | end() |
public IloInt | getColumnIndex(const char * name) const |
public const char * | getColumnName(IloInt idx) const |
public IloEnv | getEnv() const |
public const char * | getName() const |
public IloInt | getSize() const |
public IloInt | getTotalColumnNumber() const |
public | IloTupleSchema(IloTupleSchemaI const * impl=0) |
public IloBool | isAnyCollection(IloInt index) const |
public IloBool | isInt(IloIntArray path) const |
public IloBool | isInt(IloInt index) const |
public IloBool | isIntCollection(IloIntArray path) const |
public IloBool | isIntCollection(IloInt index) const |
public IloBool | isNum(IloIntArray path) const |
public IloBool | isNum(IloInt index) const |
public IloBool | isNumCollection(IloIntArray path) const |
public IloBool | isNumCollection(IloInt index) const |
public IloBool | isSymbol(IloIntArray path) const |
public IloBool | isSymbol(IloInt index) const |
public IloBool | isTuple(IloIntArray path) const |
public IloBool | isTuple(IloInt index) const |
| Method Detail |
|---|
Constructor from an implementation.
This member function deletes the invoking implementation. That is, it frees all the resources used by the invoking object. After a call to this member function, you can not use the invoking extractable object again.
This member function returns the index of a named column.
| name |
The name of the column you want to retrieve the index of.
|
Used to determine the definition of a column referenced by index idx.
| idx |
The index of the column you want to determine the name of.
|
idx.
This member function returns the environment where the invoking array was created. The elements of the invoking array belong to the same environment.
This member function returns the name of the schema.
This member function is used to determine the size of the invoking array.
This member function returns the number of columns of a schema.
This member function is used to determine whether a column is a void/symbol collection column.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is an integer column.
For this schema:
< int, int, S1, int >
where S1 is:
< symbol, S2, symbol >
and S2 is:
< int, float >
then isInt( [0] ) returns true,
isInt( [2] ) returns false,
isInt( [2, 1, 0] ) returns true, and
isInt( [2, 1, 1] ) returns false.
| path |
The path to the column you want to check.
|
This member function is used to determine whether a column contains integer values.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is an integer collection column.
See Also:
| path |
The path to the column you want to check.
|
This member function is used to determine whether a column is an integer collection column.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is a float column.
See Also:
| path |
The path to the column you want to check.
|
This member function is used to determine whether a column contains float values.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is a float collection column.
See Also:
| path |
he path to the column you want to check.
|
This member function is used to determine whether a column is a float collection column.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is a string column.
See Also:
| path |
The path to the column you want to check.
|
This member function is used to determine whether a column contains string values.
| index |
The index of the column you want to check.
|
This member function is used to determine whether a column is a tuple column.
See Also:
| path |
The path to the column you want to check.
|
This member function is used to determine whether the column index is a subtuple column.
| index |
The index of the column you want to check.
|