File tree Expand file tree Collapse file tree
src/main/java/com/appxiom/ax/tuple Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 */
99package com .appxiom .ax .tuple ;
1010
11+ import java .io .Serializable ;
1112import java .util .Map ;
1213import java .util .Objects ;
1314
1415/**
1516 * Represents a tuple where each element is associated with a specific name
1617 */
17- public final class NamedTuple {
18+ public final class NamedTuple implements Serializable {
19+
20+ private static final long serialVersionUID = 1L ;
1821
1922 /**
2023 * The internal map storing the named elements of the tuple.
Original file line number Diff line number Diff line change 77 */
88package com .appxiom .ax .tuple ;
99
10+ import java .io .Serializable ;
1011import java .util .Arrays ;
1112
1213/**
1314 * Represents an immutable sequence of elements.
1415 */
15- public final class Tuple {
16+ public final class Tuple implements Serializable {
17+
18+ private static final long serialVersionUID = 1L ;
1619
1720 /**
1821 * The internal array of elements stored in the tuple.
You can’t perform that action at this time.
0 commit comments