}
public final gap.data.Field getClassFieldByName(String name){
return Field.getField(name);
}
public Json toJson(){
Json json = new json.ObjectJson();
Json nodeType = this.toJsonNodeType();
if (null != nodeType)
json.set("nodeType",nodeType);
Json offset = this.toJsonOffset();
if (null != offset)
json.set("offset",offset);
Json lineNumber = this.toJsonLineNumber();
if (null != lineNumber)
json.set("lineNumber",lineNumber);
Json index = this.toJsonIndex();
if (null != index)
json.set("index",index);
Json nodeContent = this.toJsonNodeContent();
if (null != nodeContent)
json.set("nodeContent",nodeContent);
Json indexCloseRelative = this.toJsonIndexCloseRelative();
if (null != indexCloseRelative)
json.set("indexCloseRelative",indexCloseRelative);
return json;
}