HHH-10538 Fix the javadoc of TableInformation.getIndex(Identifier indexName)

This commit is contained in:
Guillaume Smet 2016-02-17 15:18:38 +01:00
parent af083e92ce
commit d0a036c536
1 changed files with 5 additions and 1 deletions

View File

@ -78,7 +78,11 @@ public interface TableInformation {
public Iterable<IndexInformation> getIndexes(); public Iterable<IndexInformation> getIndexes();
/** /**
* Obtain an iterable over all the table's defined indexes * Retrieve the named IndexInformation
*
* @param indexName The index identifier (simple name)
*
* @return The matching index information. May return {@code null}
*/ */
public IndexInformation getIndex(Identifier indexName); public IndexInformation getIndex(Identifier indexName);
} }