}
public static void main(String[] args) {
String input = "string=unparsed,unprocessed(maxLength=10, trim, uppercase)";
String[] operators = { "()", ",", "=" };
List<Object> parse = new NestedParser().parse(input, operators);
System.out.println(parse);
}