node-java
node-java copied to clipboard
Singleton class method call
I have this singleton logging class namedRedwoodConfiguration, for which I have to call clear method and then the apply:
import edu.stanford.nlp.util.logging.RedwoodConfiguration;
RedwoodConfiguration.current().clear().apply();
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
How to with node-java?
thank you.