All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fuzzydb.dto.attributes.OptionsSource Maven / Gradle / Ivy

Go to download

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy