HADOOP-13033. Add missing Javadoc entries to Interns.java. Contributed by Andras Bokor.

(cherry picked from commit c610031cab)
(cherry picked from commit 5949436010)
This commit is contained in:
Akira Ajisaka 2016-04-23 06:19:57 +09:00
parent 989cd895e3
commit 9891f51829
1 changed files with 6 additions and 6 deletions

View File

@ -29,7 +29,7 @@ import java.util.LinkedHashMap;
import java.util.Map; import java.util.Map;
/** /**
* Helpers to create interned metrics info * Helpers to create interned metrics info.
*/ */
@InterfaceAudience.Public @InterfaceAudience.Public
@InterfaceStability.Evolving @InterfaceStability.Evolving
@ -109,9 +109,9 @@ public class Interns {
} }
/** /**
* Get a metric info object * Get a metric info object.
* @param name * @param name Name of metric info object
* @param description * @param description Description of metric info object
* @return an interned metric info object * @return an interned metric info object
*/ */
public static MetricsInfo info(String name, String description) { public static MetricsInfo info(String name, String description) {
@ -143,7 +143,7 @@ public class Interns {
} }
/** /**
* Get a metrics tag * Get a metrics tag.
* @param info of the tag * @param info of the tag
* @param value of the tag * @param value of the tag
* @return an interned metrics tag * @return an interned metrics tag
@ -153,7 +153,7 @@ public class Interns {
} }
/** /**
* Get a metrics tag * Get a metrics tag.
* @param name of the tag * @param name of the tag
* @param description of the tag * @param description of the tag
* @param value of the tag * @param value of the tag