Beispiel #1
0
        /// <summary>
        /// Copy constructor.<br>
        /// Initializes the components list with a deep copy of the source components list. </summary>
        /// <param name="source"> a field instance to copy
        /// @since 7.7 </param>
        public static Field28E newInstance(Field28E source)
        {
            Field28E cp = new Field28E();

            cp.Components = new List <>(source.Components);
            return(cp);
        }
Beispiel #2
0
        public static Field28E fromJson(string json)
        {
            Field28E   field      = new Field28E();
            JsonParser parser     = new JsonParser();
            JsonObject jsonObject = (JsonObject)parser.parse(json);

            if (jsonObject.get("pageNumber") != null)
            {
                field.setComponent1(jsonObject.get("pageNumber").AsString);
            }
            if (jsonObject.get("continuationIndicator") != null)
            {
                field.Component2 = jsonObject.get("continuationIndicator").AsString;
            }
            return(field);
        }