Package adams.flow.transformer
Class SpreadSheetSortColumns.SortContainer
- java.lang.Object
-
- adams.flow.transformer.SpreadSheetSortColumns.SortContainer
-
- Enclosing class:
- SpreadSheetSortColumns
public static class SpreadSheetSortColumns.SortContainer extends Object
For sorting columns.
-
-
Constructor Summary
Constructors Constructor Description SortContainer(String name, int index)
Initializes the container.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIndex()
Returns the index of the column.String
getName()
Returns the name of the column.
-
-
-
Field Detail
-
m_Name
protected String m_Name
the name of the column.
-
m_Index
protected int m_Index
the original index of the column.
-
-
Constructor Detail
-
SortContainer
public SortContainer(String name, int index)
Initializes the container.- Parameters:
name
- the name of the columnindex
- the index of the column
-
-
Method Detail
-
getName
public String getName()
Returns the name of the column.- Returns:
- the name
-
getIndex
public int getIndex()
Returns the index of the column.- Returns:
- the index
-
-