return this;
}
/** eliminate conditionals not matching this client type */
public ParserConfiguration clientType(Client.Type client) {
Conditionals conditionals = new Conditionals();
if (client != null) {
conditionals.manager().addTrueConditions(client.name().toLowerCase());
}
plugins.add(conditionals);
return this;
}