public interface ResultColumnInterface extends FwkInterface
Modifier and Type | Method and Description |
---|---|
void |
add(java.lang.String value)
Add a value to the column.
|
java.lang.String |
get(int i)
Get a value from column.
|
java.lang.String |
getName()
Get the name of the column
|
int[] |
getOrder()
Get the order index.
|
int |
size()
Get the total number of column in result.
|
void |
sort(boolean ascent)
Sort the columns.
|
java.lang.String |
toString()
Get the string presentation of the column.
|
java.lang.String |
toString(boolean ordered,
boolean ascent)
Get the list output string in order.
|
getVersion, release
java.lang.String getName()
void add(java.lang.String value)
value
- the new value.java.lang.String get(int i)
int size()
int[] getOrder()
java.lang.String toString()
toString
in class java.lang.Object
void sort(boolean ascent)
ascent
- if true the columns will be sorted ascently.java.lang.String toString(boolean ordered, boolean ascent)
ordered
- if true the output will be sorted.ascent
- if true the output will have ascent order.