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 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).
@@ -109,7 +109,7 @@ public String getMapcodePrecision0() {
109109 * Get the medium-precision mapcode string (without territory information).
110110 * The returned mapcode includes the '-' separator and 1 additional digit, if available.
111111 * If a medium precision code is not available, the regular mapcode is returned.
112- * <p/>
112+ *
113113 * The returned precision is approximately 1 meter. The precision is defined as the maximum distance to the
114114 * (latitude, longitude) pair that encoded to this mapcode, which means the mapcode defines an area of
115115 * approximately 2 x 2 meters (4 m2).
@@ -134,7 +134,7 @@ public String getMapcodeMediumPrecision() {
134134 * Get the high-precision mapcode string (without territory information).
135135 * The returned mapcode includes the '-' separator and 2 additional digit2, if available.
136136 * If a high precision code is not available, the regular mapcode is returned.
137- * <p/>
137+ *
138138 * The returned precision is approximately 16 centimeters. The precision is defined as the maximum distance to the
139139 * (latitude, longitude) pair that encoded to this mapcode, which means the mapcode defines an area of
140140 * approximately 32 x 32 centimeters (0.1 m2).
@@ -203,7 +203,7 @@ public enum MapcodeFormatType {
203203 * This method return the mapcode type, given a mapcode string. If the mapcode string has an invalid
204204 * format, {@link MapcodeFormatType#MAPCODE_TYPE_INVALID} is returned. If another value is returned,
205205 * the precision of the mapcode is given.
206- * <p/>
206+ *
207207 * Note that this method only checks the syntactic validity of the mapcode, the string format. It does not
208208 * check if the mapcode is really a valid mapcode representing a position on Earth.
209209 *
@@ -258,7 +258,7 @@ public static String convertToAscii(@Nonnull final String mapcode) {
258258
259259 /**
260260 * Return the local mapcode string, potentially ambiguous.
261- * <p/>
261+ *
262262 * Example:
263263 * 49.4V
264264 *
@@ -273,7 +273,7 @@ public String asLocal() {
273273 * Return the full international mapcode, including the full name of the territory and the Mapcode itself.
274274 * The format of the code is:
275275 * full-territory-name mapcode
276- * <p/>
276+ *
277277 * Example:
278278 * Netherlands 49.4V (regular code)
279279 * Netherlands 49.4V-K2 (high precision code)
@@ -290,7 +290,7 @@ public String asInternationalFullName() {
290290 * International codes use a territory code "AAA".
291291 * The format of the code is:
292292 * short-territory-name mapcode
293- * <p/>
293+ *
294294 * Example:
295295 * NLD 49.4V (regular code)
296296 * NLD 49.4V-K2 (high-precision code)
0 commit comments