com.github.zthulj.zcopybook.model.RootNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zCopybook Show documentation
Show all versions of zCopybook Show documentation
Library helping to convert positionnal inputs (cobol) to json, using a copybook format
The newest version!
package com.github.zthulj.zcopybook.model;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.github.zthulj.zcopybook.serializer.ParentNodeSerializer;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.Serializable;
import java.util.Map;
@JsonSerialize(using = ParentNodeSerializer.class)
@EqualsAndHashCode(callSuper=true)
@ToString
public class RootNode extends ParentNode{
private static final long serialVersionUID = 1555257535111710430L;
public RootNode(Map> childs) {
super(null, childs, 0);
}
}