Javadoc fixes, sorry for the noise

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@768625 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William Barker 2009-04-25 23:28:16 +00:00
parent 171d7e0991
commit 1b2f478ffb
1 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,7 @@ public class OpenIntToFieldHashMap<T extends FieldElement<T>> implements Seriali
/**
* Build an empty map with default size and using zero for missing entries.
* @param field field to which the elements belong
*/
public OpenIntToFieldHashMap(final Field<T>field) {
this(field, DEFAULT_EXPECTED_SIZE, field.getZero());
@ -101,6 +102,7 @@ public class OpenIntToFieldHashMap<T extends FieldElement<T>> implements Seriali
/**
* Build an empty map with default size
* @param field field to which the elements belong
* @param missingEntries value to return when a missing entry is fetched
*/
public OpenIntToFieldHashMap(final Field<T>field, final T missingEntries) {
@ -109,6 +111,7 @@ public class OpenIntToFieldHashMap<T extends FieldElement<T>> implements Seriali
/**
* Build an empty map with specified size and using zero for missing entries.
* @param field field to which the elements belong
* @param expectedSize expected number of elements in the map
*/
public OpenIntToFieldHashMap(final Field<T> field,final int expectedSize) {
@ -117,6 +120,7 @@ public class OpenIntToFieldHashMap<T extends FieldElement<T>> implements Seriali
/**
* Build an empty map with specified size.
* @param field field to which the elements belong
* @param expectedSize expected number of elements in the map
* @param missingEntries value to return when a missing entry is fetched
*/