Interface IColumnPropertyResolver

All Known Subinterfaces:
IColumnPropertyAccessor<T>
All Known Implementing Classes:
BlinkingGlazedListExample.TupleColumnPropertyAccessor, ExtendedReflectiveColumnPropertyAccessor, HierarchicalReflectiveColumnPropertyAccessor, ReflectiveColumnPropertyAccessor

public interface IColumnPropertyResolver
Maps between the column property name in the backing data bean and its corresponding column index.
  • Method Details

    • getColumnProperty

      String getColumnProperty(int columnIndex)
      Parameters:
      columnIndex - i.e the order of the column in the backing bean
      Returns:
      the column property name for the provided column index.
    • getColumnIndex

      int getColumnIndex(String propertyName)
      Parameters:
      propertyName - i.e the name of the column in the backing bean
      Returns:
      the column index for the provided property name.