public Contains(CommandBuilder builder, Config config, Command parent, Command child, MorphlineContext context) {
super(builder, config, parent, child, context);
this.entrySet = new Configs().getEntrySet(config);
for (Map.Entry<String, Object> entry : entrySet) {
if (!(entry.getValue() instanceof Collection)) {
entry.setValue(new FieldExpression(entry.getValue().toString(), getConfig()));
}
}
this.renderedConfig = config.root().render();
}