net.sourceforge.cilib.problem.dataset.TextDataSetBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cilib-library Show documentation
Show all versions of cilib-library Show documentation
A library of composable components enabling simpler Computational Intelligence
The newest version!
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.problem.dataset;
/**
* TODO: Complete this javadoc.
*/
public abstract class TextDataSetBuilder extends DataSetBuilder {
private static final long serialVersionUID = -6352670028982771507L;
public abstract void initialise();
/**
* Get the length of the shortest string contained in the processed
* DataSet objects.
* @return The length of the shortest string within this TextDataSetBuilder.
*/
public abstract String getShortestString();
/**
* Get the length of the longest string contained in the processed
* DataSet objects.
* @return The length of the longest string within this TextDataSetBuilder.
*/
public abstract String getLongestString();
public abstract int size();
public abstract String get(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy