I agree on the documentation issue. I used the sample app as reference to bind dataset with section indicator.
Steps as follows,
Implement the interface SectionIndexer on your RecyclerView dataset Adapter. Both getSections() and getSectionForPosition() methods are called from recyclerviewfastscroller module.
Build an Enum on Section Indexer and getSections() method to return the enum values as array of Objects
The Core logic to return the section indexer would on the method getSectionForPosition(int position) where you would return the index for the enum values which would be used to fetch from array returned from getSections()
Any help will be highly appreciated!