public interface IloTupleSchema
IloTupleSet schema. It defines the type of the columns in the
declared IloTupleSet schema.| Modifier and Type | Method and Description |
|---|---|
void |
end()
This method deletes the invoking implementation.
|
int |
getColumnIndex(java.lang.String name)
This method returns the index of a named column.
|
java.lang.String |
getColumnName(int index)
This method is used to determine the definition of a column referenced by
index. |
java.lang.String |
getName()
This method returns the name of the schema.
|
int |
getSize()
This method is used to determine the size of the invoking array.
|
boolean |
isInt(int index)
This method is used to determine whether a column contains integer values.
|
boolean |
isIntCollection(int index)
This method is used to determine whether a column is an integer collection column.
|
boolean |
isNum(int index)
This method is used to determine whether a column contains float values.
|
boolean |
isNumCollection(int index)
This method is used to determine whether a column is a float collection column.
|
boolean |
isSymbol(int index)
This method is used to determine whether a column contains string values.
|
boolean |
isTuple(int index)
This method is used to determine whether a column is a subtuple column.
|
void end()
int getSize()
java.lang.String getColumnName(int index)
index.index.java.lang.String getName()
int getColumnIndex(java.lang.String name)
name - The name of the column for which you want to retrieve the index.boolean isInt(int index)
index - The index of the column you want to check.boolean isNum(int index)
index - The index of the column you want to check.boolean isSymbol(int index)
index - The index of the column you want to check.boolean isTuple(int index)
index - The index of the column you want to check.boolean isIntCollection(int index)
index - The index of the column you want to check.boolean isNumCollection(int index)
index - The index of the column you want to check.