List of usage examples for edu.stanford.nlp.util TwoDimensionalMap hashMap
public static <K1, K2, V> TwoDimensionalMap<K1, K2, V> hashMap()
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(); }