org.fuzzydb.dto.attributes.OptionsSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.fuzzydb.util Show documentation
Show all versions of org.fuzzydb.util Show documentation
Contains classes not specific to fuzzydb implementation which
could be used in any implementation of fuzzy matching, or as
general utility classes such as those in the geo package.
The newest version!
package org.fuzzydb.dto.attributes;
public interface OptionsSource {
/**
* Get String representation of an option given the index
*/
String findAsString(short index);
/**
* Number of options in this Enum definition
* @return int size
*/
int size();
String getName();
}