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