-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathItem.java
More file actions
1511 lines (1345 loc) · 46.6 KB
/
Item.java
File metadata and controls
1511 lines (1345 loc) · 46.6 KB
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
package org.rumbledb.api;
import com.esotericsoftware.kryo.KryoSerializable;
import org.apache.spark.api.java.JavaRDD;
import org.apache.spark.ml.Estimator;
import org.apache.spark.ml.Transformer;
import java.time.*;
import org.rumbledb.context.DynamicContext;
import org.rumbledb.context.FunctionIdentifier;
import org.rumbledb.context.Name;
import org.rumbledb.items.structured.JSoundDataFrame;
import org.rumbledb.items.xml.XMLDocumentPosition;
import org.rumbledb.runtime.flwor.NativeClauseContext;
import org.rumbledb.runtime.RuntimeIterator;
import org.rumbledb.runtime.update.primitives.Collection;
import org.rumbledb.serialization.Serializer;
import org.rumbledb.types.FunctionSignature;
import org.rumbledb.types.ItemType;
import java.io.Serializable;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/**
* An instance of this class is an item in the JSONiq data model.
* JSONiq manipulates sequences of items.
* All calls should be made via this interface. Objects of type Item should never be cast to a subclass (in a subsequent
* version,
* we will make the classes implementing this interface visible only at the package level).
* An item can be structured or atomic or a function.
* Structured items include objects and arrays. Objects are mappings from strings (keys) to items. Arrays are ordered
* lists of items.
* Atomic items have a lexical value and a type. Rumble does not support all atomic types yet.
*
* @author Ghislain Fourny, Stefan Irimescu, Can Berker Cikis
*/
public interface Item extends Serializable, KryoSerializable {
/**
* Tests whether the item is an array.
*
* @return true if it is an array, false otherwise.
*/
default boolean isArray() {
return false;
}
/**
* Tests whether the item is an object.
*
* @return true if it is an object, false otherwise.
*/
default boolean isObject() {
return false;
}
/**
* Tests whether the item is an XDM map (not a JSON object).
*
* @return true if it is a map, false otherwise.
*/
default boolean isMap() {
return false;
}
/**
* Tests whether the item is a function.
*
* @return true if it is a function, false otherwise
*/
default boolean isFunction() {
return false;
}
/**
* Tests whether the item is an atomic item.
*
* @return true if it is an atomic item, false otherwise.
*/
default boolean isAtomic() {
return false;
}
/**
* Tests whether the item is an atomic item of type string.
*
* @return true if it is an atomic item of type string, false otherwise.
*/
default boolean isString() {
return false;
}
/**
* Tests whether the item is an atomic item of type xs:untypedAtomic.
*
* @return true if it is an atomic item of type xs:untypedAtomic, false otherwise.
*/
default boolean isUntypedAtomic() {
return false;
}
/**
* Tests whether the item is an atomic item of type default boolean.
*
* @return true if it is an atomic item of type default boolean, false otherwise.
*/
default boolean isBoolean() {
return false;
}
/**
* Tests whether the item is the null item.
*
* @return true if it is the null item, false otherwise.
*/
default boolean isNull() {
return false;
}
/**
* Tests whether the item is a number (decimal or double).
*
* @return true if it is a number, false otherwise.
*/
default boolean isNumeric() {
return false;
}
/**
* Tests whether the item is an atomic item of type decimal.
*
* @return true if it is an atomic item of type decimal, false otherwise.
*/
default boolean isDecimal() {
return false;
}
/**
* Tests whether the item is an atomic item of type integer.
*
* @return true if it is an atomic item of type integer, false otherwise.
*/
default boolean isInteger() {
return false;
}
/**
* Tests whether the item is an atomic item of type int.
*
* @return true if it is an atomic item of type int, false otherwise.
*/
default boolean isInt() {
return false;
}
/**
* Tests whether the item is an atomic item of type double.
*
* @return true if it is an atomic item of type double, false otherwise.
*/
default boolean isDouble() {
return false;
}
/**
* Tests whether the item is an atomic item of type float.
*
* @return true if it is an atomic item of type float, false otherwise.
*/
default boolean isFloat() {
return false;
}
/**
* Tests whether the item is an atomic item of type duration.
*
* @return true if it is an atomic item of type duration, false otherwise.
*/
default boolean isDuration() {
return false;
}
/**
* Tests whether the item is an atomic item of type period.
*
* @return true if it is an atomic item of type period, false otherwise.
*/
default boolean isPeriod() {
return false;
}
/**
* Tests whether the item is an atomic item of type yearMonthDuration.
*
* @return true if it is an atomic item of type yearMonthDuration, false otherwise.
*/
default boolean isYearMonthDuration() {
return false;
}
/**
* Tests whether the item is an atomic item of type dayTimeDuration.
*
* @return true if it is an atomic item of type dayTimeDuration, false otherwise.
*/
default boolean isDayTimeDuration() {
return false;
}
/**
* Return only month of the item, if it's DateTime or Duration
* It will not convert years into months
*
* @return only month
*/
default int getMonth() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return year of the item, if it's DateTime or Duration
*
* @return year
*/
default int getYear() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return only day of the item, if it's DateTime or Duration
* It will not convert months and years into days.
*
* @return only day
*/
default int getDay() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Offset is an integer between −840 and 840 inclusive
*
* @return offset in minutes
*/
default int getOffset() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return only hour of the item, if it's DateTime, Time or Duration
*
* @return only hour
*/
default int getHour() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return only minutes of the item, if it's DateTime, Time or Duration
* It will not convert hours into minutes
*
* @return only minute
*/
default int getMinute() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return only seconds of the item, if it's DateTime, Time or Duration
* It will not convert hours and minutes into seconds
*
* @return only seconds
*/
default double getSecond() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Return the only nanoseconds of the item, if it's DateTime, Time or Duration
* It will not convert hours, minutes and seconds into nanoseconds
* It exists only if the value in seconds will have decimal values, otherwise it will return 0
*
* @return only nanoseconds
*/
default int getNanosecond() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Tests whether the item is an atomic item of type dateTime.
*
* @return true if it is an atomic item of type dateTime, false otherwise.
*/
default boolean isDateTime() {
return false;
}
/**
* Tests whether the item is an atomic item of type date.
*
* @return true if it is an atomic item of type date, false otherwise.
*/
default boolean isDate() {
return false;
}
/**
* Tests whether the item is an atomic item of type time.
*
* @return true if it is an atomic item of type time, false otherwise.
*/
default boolean isTime() {
return false;
}
/**
* Tests whether the item is an atomic item of type gDay.
*
* @return true if it is an atomic item of type gDay, false otherwise.
*/
default boolean isGDay() {
return false;
}
/**
* Tests whether the item is an atomic item of type gMonth.
*
* @return true if it is an atomic item of type gMonth, false otherwise.
*/
default boolean isGMonth() {
return false;
}
/**
* Tests whether the item is an atomic item of type gYear.
*
* @return true if it is an atomic item of type gYear, false otherwise.
*/
default boolean isGYear() {
return false;
}
/**
* Tests whether the item is an atomic item of type gMonthDay.
*
* @return true if it is an atomic item of type gMonthDay, false otherwise.
*/
default boolean isGMonthDay() {
return false;
}
/**
* Tests whether the item is an atomic item of type gMonthDay.
*
* @return true if it is an atomic item of type gMonthDay, false otherwise.
*/
default boolean isGYearMonth() {
return false;
}
/**
* Tests whether the item is an atomic item of type anyURI.
*
* @return true if it is an atomic item of type anyURI, false otherwise.
*/
default boolean isAnyURI() {
return false;
}
/**
* Tests whether the item is an atomic item of type base64Binary or hexBinary.
*
* @return true if it is an atomic item of type base64Binary or hexBinary, false otherwise.
*/
default boolean isBinary() {
return false;
}
/**
* Tests whether the item is an atomic item of type hexBinary.
*
* @return true if it is an atomic item of type hexBinary, false otherwise.
*/
default boolean isHexBinary() {
return false;
}
/**
* Tests whether the item is an atomic item of type base64Binary.
*
* @return true if it is an atomic item of type base64Binary, false otherwise.
*/
default boolean isBase64Binary() {
return false;
}
/**
* Tests whether the item is an XML Element node.
*
* @return true if it is an XML Element node, false otherwise.
*/
default boolean isElementNode() {
return false;
}
/**
* Tests whether the item is an XML Attribute node.
*
* @return true if it is an XML Attribute node, false otherwise.
*/
default boolean isAttributeNode() {
return false;
}
/**
* Tests whether the item is an XML Text node.
*
* @return true if it is an XML Text node, false otherwise.
*/
default boolean getContent() {
return false;
}
/**
* Tests whether the item is an XML Document node.
*
* @return true if it is an XML Document node, false otherwise.
*/
default boolean isDocumentNode() {
return false;
}
default boolean isTextNode() {
return false;
}
default boolean isCommentNode() {
return false;
}
/**
* Tests whether the item is an XML Namespace node.
*
* @return true if it is an XML Namespace node, false otherwise.
*/
default boolean isNamespaceNode() {
return false;
}
/**
* Tests whether the item is an XML Processing Instruction node.
*
* @return true if it is an XML Processing Instruction node, false otherwise.
*/
default boolean isProcessingInstructionNode() {
return false;
}
/**
* Tests whether the item is an XML node.
*
* @return true if it is an XML node, false otherwise.
*/
default boolean isNode() {
return false;
}
/**
* Whether this array item's runtime representation allows non-singleton member sequences.
* <p>
* For arrays: {@code false} means each member is stored as a single {@link Item} (singleton
* members); {@code true} means members may be arbitrary sequences.
* <p>
* Defined only for array items; other item kinds throw.
*
* @return {@code true} if non-singleton members are supported, {@code false} if members are
* singleton-only in the representation
*/
default boolean allowsNonSingletons() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the members of the item if it is an array.
*
* @return the list of the array members.
*/
default List<Item> getItems() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the logical member sequences of the item if it is an array or a map.
* <p>
* Each array or map member is represented as a sequence of items. For arrays or maps whose members are
* all singletons, each member sequence is of length 1.
* <p>
* Implementations that only support singleton members may return a singleton sequence per member.
* <p>
* For maps, the sequences are the value sequences associated with the keys.
*
* @return the list of member sequences (one sequence per array member).
*/
default List<List<Item>> getSequences() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the member of the item at the specified position if it is an array.
*
* @param position a position.
* @return the member at position position.
*/
default Item getItemAt(int position) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the logical member sequence at the specified position if it is an array.
* <p>
* The position is zero-based, consistent with {@link #getItemAt(int)}.
*
* @param position a zero-based member position.
* @return the sequence of items corresponding to that member.
*/
default List<Item> getSequenceAt(int position) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the keys of the item, if it is an object.
*
* @return the list of the keys.
*/
default List<String> getKeys() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the values of the item, if it is an object.
*
* @return the list of the value items.
*/
default List<Item> getValues() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the value associated with a specific key, if it is an object.
*
* @param key a key.
* @return the value associated with key.
*/
default Item getItemByKey(String key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the value associated with a specific key, if it is an object.
*
* @param key a key item.
* @return the value associated with key.
*/
default Item getItemByKey(Item key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the (possibly non-string) atomic keys of the item, if it is a map-like object.
*
* @return the list of atomic keys as items.
*/
default List<Item> getItemKeys() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the value sequence associated with a key, if it is a map-like object.
*
* @param key an atomic key item.
* @return the value sequence for the key, or null if absent.
*/
default List<Item> getSequenceByKey(Item key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the value sequence associated with a string key, if it is a map-like object.
*
* @param key a string key.
* @return the value sequence for the key, or null if absent.
*/
default List<Item> getSequenceByKey(String key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the size of the item, if it is an array.
*
* @return the size as an int.
*/
default int getSize() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the string value of the item, if it is an atomic item.
*
* @return the string value.
*/
default String getStringValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the boolean value of the item, if it is a boolean.
*
* @return the boolean value.
*/
default boolean getBooleanValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the double value of the item, if it is a double.
*
* @return the double value.
*/
default double getDoubleValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the float value of the item, if it is a float.
*
* @return the float value.
*/
default float getFloatValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the int value of the item, if it is an int.
*
* @return the integer value as an int.
*/
default int getIntValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the integer value of the item as a bit integer, if it is an integer.
*
* @return the integer value as a BigInteger.
*/
default BigInteger getIntegerValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the decimal value of the item, if it is a decimal.
*
* @return the decimal value as a BigDecimal.
*/
default BigDecimal getDecimalValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the period value of the item, if it is a duration.
*
* @return the period value as a Period.
*/
default Period getPeriodValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the duration value of the item, if it is a duration.
*
* @return the duration value as a Duration.
*/
default Duration getDurationValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the EpochMillis of the item, if it's DateTime or Duration
* It will collect all the parts of the item and compress it into the EpochMillis
*
* @return the EpochMillis
*/
default long getEpochMillis() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the dateTime value of the item, if it is an atomic item of type dateTimeItem or dateItem or timeItem.
*
* @return the dateTime value as a OffsetDateTime.
*/
default OffsetDateTime getDateTimeValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the time value of the item, if it is an atomic item of type or timeItem.
*
* @return the time value as a OffsetTime.
*/
default OffsetTime getTimeValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the byte[] value of the item, if it is an atomic item of type hexBinary or Base64Binary.
*
* @return the binary value as an array of bytes.
*/
default byte[] getBinaryValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the dynamic type of the item (only for error message purposes).
*
* @return the dynamic type as an item type.
*/
default ItemType getDynamicType() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the identifier (name and arity) of the function, if it is a function item.
*
* @return the function identifier.
*/
default FunctionIdentifier getIdentifier() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the names of the parameters of the function, if it is a function item.
*
* @return the function parameter names.
*/
default List<Name> getParameterNames() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the signature of the function, if it is a function item.
*
* @return the function signature.
*/
default FunctionSignature getSignature() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the body iterator, if it is a function item.
*
* @return the function signature.
*/
default RuntimeIterator getBodyIterator() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the local variable bindings, if it is a function item.
*
* @return the function signature.
*/
default Map<Name, List<Item>> getLocalVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the RDD variable bindings, if it is a function item.
*
* @return the function signature.
*/
default Map<Name, JavaRDD<Item>> getRDDVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the DataFrame variable bindings, if it is a function item.
*
* @return the function signature.
*/
default Map<Name, JSoundDataFrame> getDFVariablesInClosure() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Returns the module dynamic context, if it is a function item.
*
* @return the function signature.
*/
default DynamicContext getModuleDynamicContext() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* @return true if the Item has a timeZone, false otherwise
*/
default boolean hasTimeZone() {
return false;
}
/**
* Tests whether the item contains a representation of date or time (or both).
*
* @return true if it is an atomic item of type time, date or dateTime, false otherwise.
*/
default boolean hasDateTime() {
return false;
}
/**
* Returns the effective boolean value of the item, if atomic.
*
* @return the effective boolean value.
*/
default boolean getEffectiveBooleanValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Appends an item, if it is an array.
*
* @param item an item.
*/
default void putItem(Item item) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Appends a logical member sequence, if it is an array.
* <p>
* For arrays whose members are all singletons, this is equivalent to {@link #putItem(Item)}
* when the sequence contains exactly one item.
*
* @param items the member sequence to append as a single array member.
*/
default void appendSequence(List<Item> items) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Add an item at index i, if it is an array.
*
* @param item an item.
* @param i an integer.
*/
default void putItemAt(Item item, int i) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Replace the logical member at index i with the supplied member sequence, if it is an array.
* <p>
* For arrays whose members are all singletons, callers should prefer {@link #putItemAt(Item, int)}
* when possible.
*
* @param items the member sequence to store at the given position.
* @param i a zero-based member index.
*/
default void putSequenceAt(List<Item> items, int i) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Add all items in items at index i, if it is an array.
*
* @param items a list of items.
* @param i an integer.
*/
default void putItemsAt(List<Item> items, int i) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Remove the item at index i, if it is an array.
*
* @param i an integer.
*/
default void removeItemAt(int i) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a value pair, if it is an array item.
*
* @param value a value.
*/
default void append(Item value) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a key-value pair, if it is an object item.
*
* @param key a key.
* @param value a value.
*/
default void putItemByKey(String key, Item value) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a key-value pair, if it is a map-like object.
*
* @param key an atomic key.
* @param value a value.
*/
default void putItemByKey(Item key, Item value) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a key-sequence pair, if it is a map-like object.
*
* @param key an atomic key.
* @param valueSequence a value sequence.
*/
default void putSequenceByKey(Item key, List<Item> valueSequence) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Removes a key-value pair, if it is an object item.
*
* @param key a key.
*/
default void removeItemByKey(String key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Removes a key-value pair, if it is a map-like object.
*
* @param key an atomic key.
*/
default void removeItemByKey(Item key) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Adds a key-value pair, if it is an object item. The value is lazily computed.
*
* @param key a key.
* @param iterator a runtime iterator.
* @param context a dynamic context.
* @param isArray whether to always wrap the result in an array.
*/
default void putLazyItemByKey(
String key,
RuntimeIterator iterator,
DynamicContext context,
boolean isArray
) {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a double value (must be a numeric).
*
* @return the double value.
*/
default double castToDoubleValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a float value (must be a numeric).
*
* @return the float value.
*/
default float castToFloatValue() {
throw new UnsupportedOperationException("Operation not defined for type " + this.getDynamicType());
}
/**
* Casts the item to a decimal value (must be a numeric).
*
* @return the BigDecimal value.
*/
default BigDecimal castToDecimalValue() {