Example usage for edu.stanford.nlp.international Language Any

List of usage examples for edu.stanford.nlp.international Language Any

Introduction

In this page you can find the example usage for edu.stanford.nlp.international Language Any.

Prototype

Language Any

To view the source code for edu.stanford.nlp.international Language Any.

Click Source Link

Usage

From source file:opendial.bn.values.RelationalVal.java

License:Open Source License

private static GrammaticalRelation recordRelation(String rel) {
    return relations.computeIfAbsent(rel,
            l -> new GrammaticalRelation(Language.Any, l, l, GrammaticalRelation.ROOT));
}