@@ -112,6 +112,7 @@ public abstract static class Builder {
112112 * Number indicating the posted speed limit.
113113 *
114114 * @param speed indicating the posted speed limit
115+ * @return a {@link Builder} object
115116 * @since 3.0.0
116117 */
117118 public abstract Builder speed (@ Nullable Integer speed );
@@ -120,6 +121,7 @@ public abstract static class Builder {
120121 * String indicating the unit of speed, either as `km/h` or `mph`.
121122 *
122123 * @param unit either as `km/h` or `mph`
124+ * @return a {@link Builder} object
123125 * @since 3.0.0
124126 */
125127 public abstract Builder unit (@ Nullable String unit );
@@ -128,6 +130,7 @@ public abstract static class Builder {
128130 * Boolean is true if the speed limit is not known, otherwise null.
129131 *
130132 * @param unknown true if speed limit is not known, otherwise null
133+ * @return a {@link Builder} object
131134 * @since 3.0.0
132135 */
133136 public abstract Builder unknown (@ Nullable Boolean unknown );
@@ -136,6 +139,7 @@ public abstract static class Builder {
136139 * Boolean is `true` if the speed limit is unlimited, otherwise null.
137140 *
138141 * @param none true if speed limit is unlimited, otherwise null
142+ * @return a {@link Builder} object
139143 * @since 3.0.0
140144 */
141145 public abstract Builder none (@ Nullable Boolean none );
0 commit comments