2424/**
2525 * This class defines a single mapcode encoding result, including the mapcode itself and the
2626 * territory definition.
27- * <p/>
27+ *
2828 * Note that the constructor will throw an {@link IllegalArgumentException} if the syntax of the mapcode
2929 * is not correct. It does not throw an {@link com.mapcode.UnknownMapcodeException}, because the mapcode
3030 * is not checked for validity, other than its syntax.
@@ -63,7 +63,7 @@ public Mapcode(
6363 /**
6464 * Get the Mapcode string (without territory information) with standard precision.
6565 * The returned mapcode does not include the '-' separator and additional digits.
66- * <p/>
66+ *
6767 * The returned precision is approximately 5 meters. The precision is defined as the maximum distance to the
6868 * (latitude, longitude) pair that encoded to this mapcode, which means the mapcode defines an area of
6969 * approximately 10 x 10 meters (100 m2).
@@ -128,7 +128,7 @@ public String getMapcodePrecision0() {
128128 * Get the medium-precision mapcode string (without territory information).
129129 * The returned mapcode includes the '-' separator and 1 additional digit, if available.
130130 * If a medium precision code is not available, the regular mapcode is returned.
131- * <p/>
131+ *
132132 * The returned precision is approximately 1 meter. The precision is defined as the maximum distance to the
133133 * (latitude, longitude) pair that encoded to this mapcode, which means the mapcode defines an area of
134134 * approximately 2 x 2 meters (4 m2).
@@ -153,7 +153,7 @@ public String getMapcodeMediumPrecision() {
153153 * Get the high-precision mapcode string (without territory information).
154154 * The returned mapcode includes the '-' separator and 2 additional digit2, if available.
155155 * If a high precision code is not available, the regular mapcode is returned.
156- * <p/>
156+ *
157157 * The returned precision is approximately 16 centimeters. The precision is defined as the maximum distance to the
158158 * (latitude, longitude) pair that encoded to this mapcode, which means the mapcode defines an area of
159159 * approximately 32 x 32 centimeters (0.1 m2).
@@ -222,7 +222,7 @@ public enum MapcodeFormatType {
222222 * This method return the mapcode type, given a mapcode string. If the mapcode string has an invalid
223223 * format, {@link MapcodeFormatType#MAPCODE_TYPE_INVALID} is returned. If another value is returned,
224224 * the precision of the mapcode is given.
225- * <p/>
225+ *
226226 * Note that this method only checks the syntactic validity of the mapcode, the string format. It does not
227227 * check if the mapcode is really a valid mapcode representing a position on Earth.
228228 *
@@ -277,7 +277,7 @@ public static String convertToAscii(@Nonnull final String mapcode) {
277277
278278 /**
279279 * Return the local mapcode string, potentially ambiguous.
280- * <p/>
280+ *
281281 * Example:
282282 * 49.4V
283283 *
@@ -292,7 +292,7 @@ public String asLocal() {
292292 * Return the full international mapcode, including the full name of the territory and the Mapcode itself.
293293 * The format of the code is:
294294 * full-territory-name mapcode
295- * <p/>
295+ *
296296 * Example:
297297 * Netherlands 49.4V (regular code)
298298 * Netherlands 49.4V-K2 (high precision code)
@@ -315,7 +315,7 @@ public String asInternationalFullName() {
315315 * International codes use a territory code "AAA".
316316 * The format of the code is:
317317 * short-territory-name mapcode
318- * <p/>
318+ *
319319 * Example:
320320 * NLD 49.4V (regular code)
321321 * NLD 49.4V-K2 (high-precision code)
0 commit comments