Example usage for edu.stanford.nlp.util TwoDimensionalMap hashMap

List of usage examples for edu.stanford.nlp.util TwoDimensionalMap hashMap

Introduction

In this page you can find the example usage for edu.stanford.nlp.util TwoDimensionalMap hashMap.

Prototype

public static <K1, K2, V> TwoDimensionalMap<K1, K2, V> hashMap() 

Source Link

Usage

From source file:knu.univ.lingvo.coref.Document.java

License:Open Source License

public Document() {
    positions = Generics.newHashMap();//ww w.j  a  v a  2 s  .  c  om
    mentionheadPositions = Generics.newHashMap();
    roleSet = Generics.newHashSet();
    corefClusters = Generics.newHashMap();
    goldCorefClusters = null;
    allPredictedMentions = Generics.newHashMap();
    allGoldMentions = Generics.newHashMap();
    speakers = Generics.newHashMap();
    speakerPairs = Generics.newHashSet();
    incompatibles = TwoDimensionalSet.hashSet();
    incompatibleClusters = TwoDimensionalSet.hashSet();
    acronymCache = TwoDimensionalMap.hashMap();
}