public class Column extends Object implements DbElement, WithColumnLetterCase
AbstractDbData.
A column can have many rows with a value for each row.
Note : you never instantiate directly this class. You will get an object of this class from a Table or a
Request by using AbstractDbData.getColumn(int).
| Modifier and Type | Method and Description |
|---|---|
LetterCase |
getColumnLetterCase()
Returns the letter case of the columns.
|
String |
getName()
Returns the name of the column.
|
Value |
getRowValue(int index)
Returns the value corresponding to the row index.
|
List<Value> |
getValuesList()
Returns the values of the column.
|
public LetterCase getColumnLetterCase()
getColumnLetterCase in interface WithColumnLetterCasepublic String getName()
public List<Value> getValuesList()
public Value getRowValue(int index)
index - The indexCopyright © 2015–2016 AssertJ. All rights reserved.