1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
use crate::format::{
    FormatCalendarStyle, FormatNumberStyle, FormatPart, FormatPartType, ValueFormatTrait,
};
use icu_locid::Locale;

/// Builder for FormatPart with type Number.
#[derive(Debug)]
pub struct PartNumberBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartNumberBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Number),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// If the number:decimal-places attribute is not specified, the number of decimal places
    /// specified by the default table cell style is used.
    #[must_use]
    pub fn decimal_places(mut self, decimal_places: u8) -> Self {
        self.part
            .set_attr("number:decimal-places", decimal_places.to_string());
        self
    }

    /// Sets decimal_places and min_decimal_places to the same value,
    /// which in effect always displays the same number of decimals.
    #[must_use]
    pub fn fixed_decimal_places(mut self, decimal_places: u8) -> Self {
        self.part
            .set_attr("number:decimal-places", decimal_places.to_string());
        self.part
            .set_attr("number:min-decimal-places", decimal_places.to_string());
        self
    }

    /// The number:grouping attribute specifies whether the integer digits of a number should be
    /// grouped using a separator character.
    /// The grouping character that is used and the number of digits that are grouped together depends
    /// on the language and country of the style.
    /// The defined values for the number:grouping attribute are:
    /// * false: integer digits of a number are not grouped using a separator character.
    /// * true: integer digits of a number should be grouped by a separator character.
    /// The default value for this attribute is false.
    #[must_use]
    pub fn grouping(mut self) -> Self {
        self.part.set_attr("number:grouping", String::from("true"));
        self
    }

    /// The number:min-decimal-places attribute specifies the minimum number of digits in the
    /// decimal part.
    /// The value of the number:min-decimal-places attribute shall not be greater than the value of
    /// the number:decimal-places 19.343 attribute.
    /// If the value of number:min-decimal-places is less than the value of number:decimalplaces, trailing zero digits in decimal places following the position indicated by the value of
    /// number:min-decimal-places shall not be displayed.
    #[must_use]
    pub fn min_decimal_places(mut self, min_decimal_places: u8) -> Self {
        self.part
            .set_attr("number:min-decimal-places", min_decimal_places.to_string());
        self
    }

    /// The number:min-integer-digits attribute specifies the minimum number of integer digits to
    /// display in the integer portion of a number, a scientific number, or a fraction.
    /// For a number:fraction element, if the number:min-integer-digits attribute is not
    /// present, no integer portion is displayed.
    #[must_use]
    pub fn min_integer_digits(mut self, mininteger_digits: u8) -> Self {
        self.part
            .set_attr("number:min-integer-digits", mininteger_digits.to_string());
        self
    }

    /// The number:display-factor attribute specifies a factor by which each number is scaled
    /// (divided) before displaying.
    /// The default value for this attribute is 1
    #[must_use]
    pub fn display_factor(mut self, display_factor: f64) -> Self {
        self.part
            .set_attr("number:display-factor", display_factor.to_string());
        self
    }

    /// The number:decimal-replacement attribute specifies a replacement text for decimal places if
    /// a number style specifies that decimal places are used but the number displayed is an integer.
    /// Note: What replacement text is supported is implementation-dependent
    #[must_use]
    pub fn decimal_replacement(mut self, decimal_replacement: char) -> Self {
        self.part.set_attr(
            "number:decimal-replacement",
            decimal_replacement.to_string(),
        );
        self
    }

    /// The number:embedded-text element specifies text that is displayed at one specific position
    /// within a number.

    ///
    /// The number:embedded-text element is usable within the following element:
    /// * number:number 16.29.3.
    ///
    /// The number:embedded-text element has the following attribute:
    /// * number:position 19.358.
    ///
    /// The number:position attribute specifies the position where text appears.
    /// The index of a position starts with 1 and is counted by digits from right to left in the integer part of
    /// a number, starting left from a decimal separator if one exists, or from the last digit of the number.
    /// Text is inserted before the digit at the specified position. If the value of number:position
    /// attribute is greater than the value of number:min-integer-digits 19.355 and greater than
    /// the number of integer digits in the number, text is prepended to the number.    
    ///
    /// The number:embedded-text element has no child elements.
    /// The number:embedded-text element has character data content
    #[must_use]
    pub fn embedded_text<S: Into<String>>(mut self, text: S, pos: i32) -> Self {
        self.part.position = Some(pos);
        self.part.content = Some(text.into());
        self
    }
}

/// Builder for FormatPart with type Number.
#[derive(Debug)]
pub struct PartFillCharacterBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartFillCharacterBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::FillCharacter),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// If the number:decimal-places attribute is not specified, the number of decimal places
    /// specified by the default table cell style is used.
    #[must_use]
    pub fn fill_char(mut self, c: char) -> Self {
        self.part.set_content(c.to_string());
        self
    }
}

/// Builder for FormatPart with type ScientificNumber.
///
/// The number:scientific-number element specifies the display formatting properties for a
/// number style that should be displayed in scientific format.
///
/// The number:scientific-number element is usable within the following element:
/// * number:number-style 16.27.2.
///
/// The number:scientific-number element has the following attributes:
/// * number:decimal-places 19.343.4,
/// * number:grouping 19.348,
/// * number:min-exponentdigits 19.351 and
/// * number:min-integer-digits 19.352.
///
/// The number:scientific-number element has no child elements.
#[derive(Debug)]
pub struct PartScientificBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartScientificBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::ScientificNumber),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// If the number:decimal-places attribute is not specified, the number of decimal places
    /// specified by the default table cell style is used.
    #[must_use]
    pub fn decimal_places(mut self, v: u8) -> Self {
        self.part.set_attr("number:decimal-places", v.to_string());
        self
    }

    /// The number:exponent-interval attribute determines the valid exponents to be used: the
    /// valid exponents are the integer multiples of the value of the number:exponent-interval
    /// attribute.
    /// The default value for this attribute is 1.
    #[must_use]
    pub fn expontent_interval(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:exponent-interval", v.to_string());
        self
    }

    /// The number:forced-exponent-sign attribute specifies whether the sign of the exponent for a
    /// scientific number is always displayed.
    /// The defined values for the number:forced-exponent-sign attribute are:
    /// * false: the exponent sign is displayed only for a negative value of the exponent, otherwise it
    /// is not displayed.
    /// * true: the exponent sign is always displayed regardless of the value of exponent.
    /// The default value for this attribute is true.
    #[must_use]
    pub fn forced_exponent_sign(mut self, v: bool) -> Self {
        self.part
            .set_attr("number:forced-exponent-sign", v.to_string());
        self
    }

    /// The number:grouping attribute specifies whether the integer digits of a number should be
    /// grouped using a separator character.
    /// The grouping character that is used and the number of digits that are grouped together depends
    /// on the language and country of the style.
    /// The defined values for the number:grouping attribute are:
    /// * false: integer digits of a number are not grouped using a separator character.
    /// * true: integer digits of a number should be grouped by a separator character.
    /// The default value for this attribute is false.
    #[must_use]
    pub fn grouping(mut self) -> Self {
        self.part.set_attr("number:grouping", String::from("true"));
        self
    }

    /// The number:min-decimal-places attribute specifies the minimum number of digits in the
    /// decimal part.
    /// The value of the number:min-decimal-places attribute shall not be greater than the value of
    /// the number:decimal-places 19.343 attribute.
    /// If the value of number:min-decimal-places is less than the value of number:decimalplaces, trailing zero digits in decimal places following the position indicated by the value of
    /// number:min-decimal-places shall not be displayed.
    #[must_use]
    pub fn min_decimal_places(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-decimal-places", v.to_string());
        self
    }

    /// The number:min-exponent-digits attribute specifies the minimum number of digits to use to
    /// display an exponent.
    #[must_use]
    pub fn min_exponent_digits(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-exponent-digits", v.to_string());
        self
    }

    /// The number:min-integer-digits attribute specifies the minimum number of integer digits to
    /// display in the integer portion of a number, a scientific number, or a fraction.
    /// For a number:fraction element, if the number:min-integer-digits attribute is not
    /// present, no integer portion is displayed.
    #[must_use]
    pub fn min_integer_digits(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-integer-digits", v.to_string());
        self
    }
}

/// The number:fraction element specifies the display formatting properties for a number style
/// that should be displayed as a fraction.
///
/// The number:fraction element is usable within the following element:
/// * number:numberstyle 16.29.2.
///
/// The number:fraction element has the following attributes:
/// * number:denominatorvalue 19.345,
/// * number:grouping 19.350,
/// * number:max-denominator-value 19.352,
/// * number:min-denominator-digits 19.353,
/// * number:min-integer-digits 19.355 and
/// * number:min-numerator-digits 19.357.
///
/// The number:fraction element has no child elements.
#[derive(Debug)]
pub struct PartFractionBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartFractionBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Fraction),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:denominator-value attribute specifies an integer value that is used as the
    /// denominator of a fraction. If this attribute is not present, a denominator that is appropriate for
    /// displaying the number is used.
    #[must_use]
    pub fn denominator(mut self, v: i64) -> Self {
        self.part
            .set_attr("number:denominator-value", v.to_string());
        self
    }

    /// The number:grouping attribute specifies whether the integer digits of a number should be
    /// grouped using a separator character.
    /// The grouping character that is used and the number of digits that are grouped together depends
    /// on the language and country of the style.
    /// The defined values for the number:grouping attribute are:
    /// * false: integer digits of a number are not grouped using a separator character.
    /// * true: integer digits of a number should be grouped by a separator character.
    /// The default value for this attribute is false.
    #[must_use]
    pub fn grouping(mut self) -> Self {
        self.part.set_attr("number:grouping", String::from("true"));
        self
    }

    /// The number:max-denominator-value attribute specifies the maximum
    /// denominator permitted to be chosen if its number:fraction element does not
    /// have a number:denominator-value attribute. The number:max-denominator-value
    /// attribute is ignored in the presence of a number:denominator-value 19.345
    /// attribute. The absence of the number:max-denominator-value attribute indicates
    /// that no maximum denominator is specified.
    #[must_use]
    pub fn max_denominator(mut self, v: i64) -> Self {
        self.part
            .set_attr("number:max-denominator-value", v.to_string());
        self
    }

    /// The number:min-denominator-digits attribute specifies the minimum number of digits to
    /// use to display the denominator of a fraction.
    #[must_use]
    pub fn min_denominator_digits(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-denominator-digits", v.to_string());
        self
    }

    /// The number:min-integer-digits attribute specifies the minimum number of integer digits to
    /// display in the integer portion of a number, a scientific number, or a fraction.
    /// For a number:fraction element, if the number:min-integer-digits attribute is not
    /// present, no integer portion is displayed.
    #[must_use]
    pub fn min_integer_digits(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-numerator-digits", v.to_string());
        self
    }

    /// The number:min-numerator-digits attribute specifies the minimum number of digits to use
    /// to display the numerator in a fraction.
    #[must_use]
    pub fn min_numerator_digits(mut self, v: u8) -> Self {
        self.part
            .set_attr("number:min-numerator-digits", v.to_string());
        self
    }
}

/// The number:currency-symbol element specifies whether a currency symbol is displayed in
/// a currency style.
/// The content of this element is the text that is displayed as the currency symbol.
/// If the element is empty or contains white space characters only, the default currency
/// symbol for the currency style or the language and country of the currency style is displayed.
///
/// The number:currency-symbol element is usable within the following element:
/// * number:currency-style 16.27.7.
///
/// The number:currency-symbol element has the following attributes:
/// * number:country 19.342,
/// * number:language 19.349,
/// * number:rfc-language-tag 19.356 and
/// * number:script 19.357.
///
/// The number:currency-symbol element has no child elements.
/// The number:currency-symbol element has character data content.
#[derive(Debug)]
pub struct PartCurrencySymbolBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartCurrencySymbolBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::CurrencySymbol),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:language attribute specifies a language code. The country code is used for
    /// formatting properties whose evaluation is locale-dependent.
    /// If a language code is not specified, either the system settings or the setting for the system's
    /// language are used, depending on the property whose value should be evaluated.
    ///
    /// The number:country attribute specifies a country code for a data style. The country code is
    /// used for formatting properties whose evaluation is locale-dependent.
    /// If a country is not specified, the system settings are used.
    /// The number:country attribute on a number:currency-symbol element, specifies the
    /// country of a currency symbol.
    ///
    /// The number:script attribute specifies a script code. The script code is used for formatting
    /// properties whose evaluation is locale-dependent. The attribute should be used only if necessary
    /// according to the rules of §2.2.3 of [RFC5646](https://datatracker.ietf.org/doc/html/rfc5646), or its successors.
    #[must_use]
    pub fn locale(mut self, v: Locale) -> Self {
        self.part
            .set_attr("number:language", v.id.language.to_string());
        if let Some(region) = v.id.region {
            self.part.set_attr("number:country", region.to_string());
        }
        if let Some(script) = v.id.script {
            self.part.set_attr("number:script", script.to_string());
        }
        self
    }

    /// Symbol text that is used for the currency symbol. If not set
    /// the default according to the country is used.
    #[must_use]
    pub fn symbol<S: Into<String>>(mut self, v: S) -> Self {
        self.part.set_content(v.into());
        self
    }
}

/// The number:day element specifies a day of a month in a date.
///
/// The number:day element is usable within the following element:
/// * number:date-style 16.27.10.
///
/// The number:day element has the following attributes:
/// * number:calendar 19.341 and
/// * number:style 19.358.2.
///
/// The number:day element has no child elements.
#[derive(Debug)]
pub struct PartDayBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartDayBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Day),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// Builder for FormatPart with type Month.
///
/// The number:month element specifies a month in a date.
///
/// The number:month element is usable within the following element:
/// * number:date-style 16.27.10.
///
/// The number:month element has the following attributes:
/// number:calendar 19.341,
/// number:possessive-form 19.355,
/// number:style 19.358.7 and
/// number:textual 19.359.
///
/// The number:month element has no child elements
#[derive(Debug)]
pub struct PartMonthBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartMonthBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Month),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:textual attribute specifies whether the name or number of a month is displayed in
    /// the month portion of a date.
    /// The defined values for the number:textual element are:
    /// * false: the number of the month is displayed.
    /// * true: the name of the month is displayed.
    /// The name or number of a month is defined by the number:calendar 19.341 attribute on the
    /// same parent element as the number:textual attribute.
    /// The default value for this attribute is false.
    #[must_use]
    pub fn textual(mut self) -> Self {
        self.part.set_attr("number:textual", true.to_string());
        self
    }

    /// The number:possessive-form attribute specifies whether the month is displayed as a noun or
    /// using the possessive form.
    /// The number:possessive-form attribute is only applied when a number:textual 19.363
    /// attribute on the same number:month element has the value of true.
    /// The defined values for the number:possessive-form attribute are:
    /// * false: the name of the month is displayed in nominative form.
    /// * true: the name of the month is displayed in possessive form.
    #[must_use]
    pub fn possessive_form(mut self) -> Self {
        self.part
            .set_attr("number:possessive-form", true.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:year element specifies a year in a date.
/// The number:year element is usable within the following element:
/// * number:date-style 16.27.10.
///
/// The number:year element has the following attributes:
/// * number:calendar 19.341 and
/// * number:style 19.358.10.
///
/// The number:year element has no child elements.
#[derive(Debug)]
pub struct PartYearBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartYearBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Year),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:era element specifies an era in which a year is counted.
///
/// The number:era element is usable within the following element:
/// * number:date-style 16.27.10.
///
/// The number:era element has the following attributes:
/// * number:calendar 19.341 and
/// * number:style 19.358.4.
///
/// The number:era element has no child elements
#[derive(Debug)]
pub struct PartEraBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartEraBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Era),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:day-of-week element specifies a day of a week in a date.
///
/// The number:day-of-week element is usable within the following element:
/// * number:datestyle 16.27.10.
///
/// The number:day-of-week element has the following attributes:
/// * number:calendar 19.341 and
/// * number:style 19.358.3.
///
/// The number:day-of-week element has no child elements.
#[derive(Debug)]
pub struct PartDayOfWeekBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartDayOfWeekBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::DayOfWeek),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:week-of-year element specifies a week of a year in a date.
///
/// The number:week-of-year element is usable within the following element:
/// * number:date-style 16.27.10.
///
/// The number:week-of-year element has the following attribute:
/// * number:calendar 19.341.
///
/// The number:week-of-year element has no child elements.
#[derive(Debug)]
pub struct PartWeekOfYearBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartWeekOfYearBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::WeekOfYear),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:quarter element specifies a quarter of the year in a date.
///
/// The number:quarter element is usable within the following element:
/// * number:datestyle 16.27.10.
///
/// The number:quarter element has the following attributes:
/// * number:calendar 19.341 and
/// * number:style 19.358.8.
///
/// The number:quarter element has no child elements
#[derive(Debug)]
pub struct PartQuarterBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartQuarterBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Quarter),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }

    /// The number:calendar attribute specifies the calendar system used to extract parts of a date.
    ///
    /// The attribute value may also be a string value. If this attribute is not specified, the default calendar
    /// system for the locale of the data style is used.
    #[must_use]
    pub fn calendar(mut self, calendar: FormatCalendarStyle) -> Self {
        self.part.set_attr("number:calendar", calendar.to_string());
        self
    }
}

/// The number:hours element specifies whether hours are displayed as part of a date or time.
///
/// The number:hours element is usable within the following elements:
/// * number:datestyle 16.27.10 and
/// * number:time-style 16.27.18.
///
/// The number:hours element has the following attribute:
/// * number:style 19.358.5.
///
/// The number:hours element has no child elements.
#[derive(Debug)]
pub struct PartHoursBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartHoursBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Hours),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }
}

/// The number:minutes element specifies whether minutes are displayed as part of a date or
/// time.
/// The number:minutes element is usable within the following elements:
/// * number:datestyle 16.27.10 and
/// * number:time-style 16.27.18.
///
/// The number:minutes element has the following attribute:
/// * number:style 19.358.6.
///
/// The number:minutes element has no child elements.
#[derive(Debug)]
pub struct PartMinutesBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartMinutesBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Minutes),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }
}

/// The number:seconds element specifies whether seconds are displayed as part of a date or
/// time.
///
/// The number:seconds element is usable within the following elements:
/// * number:datestyle 16.27.10 and
/// * number:time-style 16.27.18.
///
/// The number:seconds element has the following attributes:
/// * number:decimal-places 19.343.3 and
/// * number:style 19.358.9.
///
/// The number:seconds element has no child elements.
#[derive(Debug)]
pub struct PartSecondsBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartSecondsBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Seconds),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// If the number:decimal-places attribute is not specified, the number of decimal places
    /// specified by the default table cell style is used.
    #[must_use]
    pub fn decimal_places(mut self, decimal_places: u8) -> Self {
        self.part
            .set_attr("number:decimal-places", decimal_places.to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn long_style(mut self) -> Self {
        self.part.set_attr("number:style", "long".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn short_style(mut self) -> Self {
        self.part.set_attr("number:style", "short".to_string());
        self
    }

    /// The number:style attribute specifies whether the content of a time element is displayed in short
    /// or long format. The value of this attribute can be short or long. The meaning of these values
    /// depends on the value of the number:format-source 19.348 attribute that is attached to a date
    /// or time style.
    #[must_use]
    pub fn style(mut self, style: FormatNumberStyle) -> Self {
        self.part.set_attr("number:style", style.to_string());
        self
    }
}

/// Adds a format part to this format.
///
/// The number:am-pm element specifies whether AM/PM is included as part of a date or time.
/// If a number:am-pm element is contained in a date or time style, hours are displayed using
/// values from 1 to 12 only.
///
/// Can be used with ValueTypes:
/// * DateTime
/// * TimeDuration
#[derive(Debug)]
pub struct PartAmPmBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartAmPmBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::AmPm),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }
}

/// Adds a format part to this format.
///
/// The number:boolean element marks the position of the Boolean value of a Boolean style.
///
/// Can be used with ValueTypes:
/// * Boolean
#[derive(Debug)]
pub struct PartBooleanBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartBooleanBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Boolean),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }
}

/// Adds a format part to this format.
///
/// The number:text element contains any fixed text for a data style.
///
/// Can be used with ValueTypes:
/// * Boolean
/// * Currency
/// * DateTime
/// * Number
/// * Percentage
/// * Text
/// * TimeDuration
#[derive(Debug)]
pub struct PartTextBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartTextBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::Text),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }

    /// Only applies the builder if the test is true.
    #[must_use]
    pub fn if_then<F>(self, test: bool, build: F) -> Self
    where
        F: Fn(Self) -> Self,
    {
        if test {
            build(self)
        } else {
            self
        }
    }

    /// Sets the text value.
    #[must_use]
    pub fn text<S: Into<String>>(mut self, txt: S) -> Self {
        self.part.set_content(txt.into());
        self
    }
}

/// Adds a format part to this format.
///    
/// The number:text-content element marks the position of variable text content of a text
/// style.
///
/// Can be used with ValueTypes:
/// * Text

#[derive(Debug)]
pub struct PartTextContentBuilder<'vf, T: ValueFormatTrait> {
    part: FormatPart,
    valueformat: &'vf mut T,
}

impl<'vf, T: ValueFormatTrait> PartTextContentBuilder<'vf, T> {
    /// New builder for the valueformat.
    pub fn new<'a>(valueformat: &'a mut T) -> Self
    where
        'a: 'vf,
    {
        Self {
            part: FormatPart::new(FormatPartType::TextContent),
            valueformat,
        }
    }

    /// Appends the constructed FormatPart to the original value format.
    pub fn build(self) {
        self.valueformat.push_part(self.part);
    }
}