Inherits Serializable.
List of all members.
Detailed Description
- Author:
- Pavol Zibrita <pavol.zibrita@gmail.com>
Constructor & Destructor Documentation
Member Function Documentation
Member Data Documentation
Initial value: new TreeMap<String, IndexItem>(new Comparator<String>(){
private static final long serialVersionUID = 1L;
@Override
public int compare(String object1, String object2) {
if(object1.endsWith(IndexConstants.ANYVOICE_INDEX_EXT_ZIP)){
if(object2.endsWith(IndexConstants.ANYVOICE_INDEX_EXT_ZIP)){
return object1.compareTo(object2);
} else {
return -1;
}
} else if(object2.endsWith(IndexConstants.ANYVOICE_INDEX_EXT_ZIP)){
return 1;
}
return object1.compareTo(object2);
}
})
The documentation for this class was generated from the following file: