Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I am able to recognize that I am standing at leaf list by:leaf.getInfo().isLeafList() = trueorleaf.getInfo().getCsNode().getNodeInfo().getShallowType() = ConfObject.J_LIST.But, how could I determine inner type of leaf-list, e.g. uint32?
The only implementation of getListType method I found in conf-api is the one in AbstractXMLtoConfXMLDefaultHandler:private MaapiSchemas.CSType getListType(@NotNull MaapiSchemas.CSType type).But it's not public. Following the implementation I can dete...