1 package org.djunits.value.vfloat.scalar;
2
3 import java.util.Locale;
4
5 import org.djunits.unit.AreaUnit;
6 import org.djunits.unit.DimensionlessUnit;
7 import org.djunits.unit.DurationUnit;
8 import org.djunits.unit.EnergyUnit;
9 import org.djunits.unit.LengthUnit;
10 import org.djunits.unit.LinearDensityUnit;
11 import org.djunits.unit.MomentumUnit;
12 import org.djunits.unit.PositionUnit;
13 import org.djunits.unit.SpeedUnit;
14 import org.djunits.unit.VolumeUnit;
15 import org.djunits.value.vfloat.scalar.base.FloatScalarRel;
16 import org.djunits.value.vfloat.scalar.base.FloatScalarRelWithAbs;
17 import org.djutils.base.NumberParser;
18 import org.djutils.exceptions.Throw;
19
20 import jakarta.annotation.Generated;
21
22
23
24
25
26
27
28
29
30
31
32 @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2025-09-06T15:16:28.380798Z")
33 public class FloatLength extends FloatScalarRelWithAbs<PositionUnit, FloatPosition, LengthUnit, FloatLength>
34 {
35
36 private static final long serialVersionUID = 20150901L;
37
38
39 public static final FloatLength ZERO = new FloatLength(0.0f, LengthUnit.SI);
40
41
42 public static final FloatLength ONE = new FloatLength(1.0f, LengthUnit.SI);
43
44
45 @SuppressWarnings("checkstyle:constantname")
46 public static final FloatLength NaN = new FloatLength(Float.NaN, LengthUnit.SI);
47
48
49 public static final FloatLength POSITIVE_INFINITY = new FloatLength(Float.POSITIVE_INFINITY, LengthUnit.SI);
50
51
52 public static final FloatLength NEGATIVE_INFINITY = new FloatLength(Float.NEGATIVE_INFINITY, LengthUnit.SI);
53
54
55 public static final FloatLength POS_MAXVALUE = new FloatLength(Float.MAX_VALUE, LengthUnit.SI);
56
57
58 public static final FloatLength NEG_MAXVALUE = new FloatLength(-Float.MAX_VALUE, LengthUnit.SI);
59
60
61
62
63
64
65 public FloatLength(final float value, final LengthUnit unit)
66 {
67 super(value, unit);
68 }
69
70
71
72
73
74 public FloatLength(final FloatLength value)
75 {
76 super(value);
77 }
78
79
80
81
82
83
84 public FloatLength(final double value, final LengthUnit unit)
85 {
86 super((float) value, unit);
87 }
88
89 @Override
90 public final FloatLength instantiateRel(final float value, final LengthUnit unit)
91 {
92 return new FloatLength(value, unit);
93 }
94
95
96
97
98
99
100 public static final FloatLength ofSI(final float value)
101 {
102 return new FloatLength(value, LengthUnit.SI);
103 }
104
105 @Override
106 public final FloatPosition instantiateAbs(final float value, final PositionUnit unit)
107 {
108 return new FloatPosition(value, unit);
109 }
110
111
112
113
114
115
116
117
118 public static FloatLength interpolate(final FloatLength zero, final FloatLength one, final float ratio)
119 {
120 Throw.when(ratio < 0.0 || ratio > 1.0, IllegalArgumentException.class,
121 "ratio for interpolation should be between 0 and 1, but is %f", ratio);
122 return new FloatLength(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
123 zero.getDisplayUnit());
124 }
125
126
127
128
129
130
131
132 public static FloatLength max(final FloatLength r1, final FloatLength r2)
133 {
134 return r1.gt(r2) ? r1 : r2;
135 }
136
137
138
139
140
141
142
143
144 public static FloatLength max(final FloatLength r1, final FloatLength r2, final FloatLength... rn)
145 {
146 FloatLength maxr = r1.gt(r2) ? r1 : r2;
147 for (FloatLength r : rn)
148 {
149 if (r.gt(maxr))
150 {
151 maxr = r;
152 }
153 }
154 return maxr;
155 }
156
157
158
159
160
161
162
163 public static FloatLength min(final FloatLength r1, final FloatLength r2)
164 {
165 return r1.lt(r2) ? r1 : r2;
166 }
167
168
169
170
171
172
173
174
175 public static FloatLength min(final FloatLength r1, final FloatLength r2, final FloatLength... rn)
176 {
177 FloatLength minr = r1.lt(r2) ? r1 : r2;
178 for (FloatLength r : rn)
179 {
180 if (r.lt(minr))
181 {
182 minr = r;
183 }
184 }
185 return minr;
186 }
187
188
189
190
191
192
193
194
195
196
197 public static FloatLength valueOf(final String text)
198 {
199 Throw.whenNull(text, "Error parsing FloatLength: text to parse is null");
200 Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing FloatLength: empty text to parse");
201 try
202 {
203 NumberParser numberParser = new NumberParser().lenient().trailing();
204 float f = numberParser.parseFloat(text);
205 String unitString = text.substring(numberParser.getTrailingPosition()).trim();
206 LengthUnit unit = LengthUnit.BASE.getUnitByAbbreviation(unitString);
207 Throw.when(unit == null, IllegalArgumentException.class, "Unit %s not found for quantity Length", unitString);
208 return new FloatLength(f, unit);
209 }
210 catch (Exception exception)
211 {
212 throw new IllegalArgumentException(
213 "Error parsing FloatLength from " + text + " using Locale " + Locale.getDefault(Locale.Category.FORMAT),
214 exception);
215 }
216 }
217
218
219
220
221
222
223
224
225
226 public static FloatLength of(final float value, final String unitString)
227 {
228 Throw.whenNull(unitString, "Error parsing FloatLength: unitString is null");
229 Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing FloatLength: empty unitString");
230 LengthUnit unit = LengthUnit.BASE.getUnitByAbbreviation(unitString);
231 Throw.when(unit == null, IllegalArgumentException.class, "Error parsing FloatLength with unit %s", unitString);
232 return new FloatLength(value, unit);
233 }
234
235
236
237
238
239
240 public final FloatDimensionless divide(final FloatLength v)
241 {
242 return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
243 }
244
245
246
247
248
249
250 public final FloatDimensionless times(final FloatLinearDensity v)
251 {
252 return new FloatDimensionless(this.si * v.si, DimensionlessUnit.SI);
253 }
254
255
256
257
258
259
260 public final FloatArea times(final FloatLength v)
261 {
262 return new FloatArea(this.si * v.si, AreaUnit.SI);
263 }
264
265
266
267
268
269
270 public final FloatArea divide(final FloatLinearDensity v)
271 {
272 return new FloatArea(this.si / v.si, AreaUnit.SI);
273 }
274
275
276
277
278
279
280 public final FloatLinearDensity divide(final FloatArea v)
281 {
282 return new FloatLinearDensity(this.si / v.si, LinearDensityUnit.SI);
283 }
284
285
286
287
288
289
290 public final FloatVolume times(final FloatArea v)
291 {
292 return new FloatVolume(this.si * v.si, VolumeUnit.SI);
293 }
294
295
296
297
298
299
300 public final FloatEnergy times(final FloatForce v)
301 {
302 return new FloatEnergy(this.si * v.si, EnergyUnit.SI);
303 }
304
305
306
307
308
309
310 public final FloatSpeed times(final FloatFrequency v)
311 {
312 return new FloatSpeed(this.si * v.si, SpeedUnit.SI);
313 }
314
315
316
317
318
319
320 public final FloatSpeed divide(final FloatDuration v)
321 {
322 return new FloatSpeed(this.si / v.si, SpeedUnit.SI);
323 }
324
325
326
327
328
329
330 public final FloatDuration divide(final FloatSpeed v)
331 {
332 return new FloatDuration(this.si / v.si, DurationUnit.SI);
333 }
334
335
336
337
338
339
340 public final FloatMomentum times(final FloatFlowMass v)
341 {
342 return new FloatMomentum(this.si * v.si, MomentumUnit.SI);
343 }
344
345 @Override
346 public FloatLinearDensity reciprocal()
347 {
348 return FloatLinearDensity.ofSI(1.0f / this.si);
349 }
350
351
352
353
354
355
356
357 public static FloatLength multiply(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
358 {
359 Throw.whenNull(scalar1, "scalar1 cannot be null");
360 Throw.whenNull(scalar2, "scalar2 cannot be null");
361 Throw.when(!scalar1.getDisplayUnit().getQuantity().getSiDimensions()
362 .plus(scalar2.getDisplayUnit().getQuantity().getSiDimensions()).equals(LengthUnit.BASE.getSiDimensions()),
363 IllegalArgumentException.class, "Multiplying %s by %s does not result in instance of type FloatLength",
364 scalar1.toDisplayString(), scalar2.toDisplayString());
365 return new FloatLength(scalar1.si * scalar2.si, LengthUnit.SI);
366 }
367
368
369
370
371
372
373
374 public static FloatLength divide(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
375 {
376 Throw.whenNull(scalar1, "scalar1 cannot be null");
377 Throw.whenNull(scalar2, "scalar2 cannot be null");
378 Throw.when(!scalar1.getDisplayUnit().getQuantity().getSiDimensions()
379 .minus(scalar2.getDisplayUnit().getQuantity().getSiDimensions()).equals(LengthUnit.BASE.getSiDimensions()),
380 IllegalArgumentException.class, "Dividing %s by %s does not result in an instance of type FloatLength",
381 scalar1.toDisplayString(), scalar2.toDisplayString());
382 return new FloatLength(scalar1.si / scalar2.si, LengthUnit.SI);
383 }
384
385 }