1 package org.djunits.value.vfloat.scalar;
2
3 import java.util.Locale;
4
5 import org.djunits.unit.DimensionlessUnit;
6 import org.djunits.unit.LuminousFluxUnit;
7 import org.djunits.unit.SolidAngleUnit;
8 import org.djunits.value.vfloat.scalar.base.FloatScalar;
9 import org.djunits.value.vfloat.scalar.base.FloatScalarRel;
10 import org.djutils.base.NumberParser;
11 import org.djutils.exceptions.Throw;
12
13 import jakarta.annotation.Generated;
14
15
16
17
18
19
20
21
22
23
24 @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2023-07-23T14:06:38.224104100Z")
25 public class FloatSolidAngle extends FloatScalarRel<SolidAngleUnit, FloatSolidAngle>
26 {
27
28 private static final long serialVersionUID = 20150901L;
29
30
31 public static final FloatSolidAngle ZERO = new FloatSolidAngle(0.0f, SolidAngleUnit.SI);
32
33
34 public static final FloatSolidAngle ONE = new FloatSolidAngle(1.0f, SolidAngleUnit.SI);
35
36
37 @SuppressWarnings("checkstyle:constantname")
38 public static final FloatSolidAngle NaN = new FloatSolidAngle(Float.NaN, SolidAngleUnit.SI);
39
40
41 public static final FloatSolidAngle POSITIVE_INFINITY = new FloatSolidAngle(Float.POSITIVE_INFINITY, SolidAngleUnit.SI);
42
43
44 public static final FloatSolidAngle NEGATIVE_INFINITY = new FloatSolidAngle(Float.NEGATIVE_INFINITY, SolidAngleUnit.SI);
45
46
47 public static final FloatSolidAngle POS_MAXVALUE = new FloatSolidAngle(Float.MAX_VALUE, SolidAngleUnit.SI);
48
49
50 public static final FloatSolidAngle NEG_MAXVALUE = new FloatSolidAngle(-Float.MAX_VALUE, SolidAngleUnit.SI);
51
52
53
54
55
56
57 public FloatSolidAngle(final float value, final SolidAngleUnit unit)
58 {
59 super(value, unit);
60 }
61
62
63
64
65
66 public FloatSolidAngle(final FloatSolidAngle value)
67 {
68 super(value);
69 }
70
71
72
73
74
75
76 public FloatSolidAngle(final double value, final SolidAngleUnit unit)
77 {
78 super((float) value, unit);
79 }
80
81 @Override
82 public final FloatSolidAngle instantiateRel(final float value, final SolidAngleUnit unit)
83 {
84 return new FloatSolidAngle(value, unit);
85 }
86
87
88
89
90
91
92 public static final FloatSolidAngle instantiateSI(final float value)
93 {
94 return new FloatSolidAngle(value, SolidAngleUnit.SI);
95 }
96
97
98
99
100
101
102
103
104 public static FloatSolidAngle interpolate(final FloatSolidAngle zero, final FloatSolidAngle one, final float ratio)
105 {
106 return new FloatSolidAngle(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
107 zero.getDisplayUnit());
108 }
109
110
111
112
113
114
115
116 public static FloatSolidAngle max(final FloatSolidAngle r1, final FloatSolidAngle r2)
117 {
118 return r1.gt(r2) ? r1 : r2;
119 }
120
121
122
123
124
125
126
127
128 public static FloatSolidAngle max(final FloatSolidAngle r1, final FloatSolidAngle r2, final FloatSolidAngle... rn)
129 {
130 FloatSolidAngle maxr = r1.gt(r2) ? r1 : r2;
131 for (FloatSolidAngle r : rn)
132 {
133 if (r.gt(maxr))
134 {
135 maxr = r;
136 }
137 }
138 return maxr;
139 }
140
141
142
143
144
145
146
147 public static FloatSolidAngle min(final FloatSolidAngle r1, final FloatSolidAngle r2)
148 {
149 return r1.lt(r2) ? r1 : r2;
150 }
151
152
153
154
155
156
157
158
159 public static FloatSolidAngle min(final FloatSolidAngle r1, final FloatSolidAngle r2, final FloatSolidAngle... rn)
160 {
161 FloatSolidAngle minr = r1.lt(r2) ? r1 : r2;
162 for (FloatSolidAngle r : rn)
163 {
164 if (r.lt(minr))
165 {
166 minr = r;
167 }
168 }
169 return minr;
170 }
171
172
173
174
175
176
177
178
179
180
181 public static FloatSolidAngle valueOf(final String text)
182 {
183 Throw.whenNull(text, "Error parsing FloatSolidAngle: text to parse is null");
184 Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing FloatSolidAngle: empty text to parse");
185 try
186 {
187 NumberParser numberParser = new NumberParser().lenient().trailing();
188 float f = numberParser.parseFloat(text);
189 String unitString = text.substring(numberParser.getTrailingPosition()).trim();
190 SolidAngleUnit unit = SolidAngleUnit.BASE.getUnitByAbbreviation(unitString);
191 if (unit == null)
192 throw new IllegalArgumentException("Unit " + unitString + " not found");
193 return new FloatSolidAngle(f, unit);
194 }
195 catch (Exception exception)
196 {
197 throw new IllegalArgumentException(
198 "Error parsing FloatSolidAngle from " + text + " using Locale " + Locale.getDefault(Locale.Category.FORMAT),
199 exception);
200 }
201 }
202
203
204
205
206
207
208
209
210
211 public static FloatSolidAngle of(final float value, final String unitString)
212 {
213 Throw.whenNull(unitString, "Error parsing FloatSolidAngle: unitString is null");
214 Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing FloatSolidAngle: empty unitString");
215 SolidAngleUnit unit = SolidAngleUnit.BASE.getUnitByAbbreviation(unitString);
216 if (unit != null)
217 {
218 return new FloatSolidAngle(value, unit);
219 }
220 throw new IllegalArgumentException("Error parsing FloatSolidAngle with unit " + unitString);
221 }
222
223
224
225
226
227
228 public final FloatDimensionless divide(final FloatSolidAngle v)
229 {
230 return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
231 }
232
233
234
235
236
237
238 public final FloatLuminousFlux times(final FloatLuminousIntensity v)
239 {
240 return new FloatLuminousFlux(this.si * v.si, LuminousFluxUnit.SI);
241 }
242
243 @Override
244 public FloatSIScalar reciprocal()
245 {
246 return FloatScalar.divide(FloatDimensionless.ONE, this);
247 }
248
249 }