Tabnine Logo
HashMultimap
Code IndexAdd Tabnine to your IDE (free)

How to use
HashMultimap
in
org.apache.jena.ext.com.google.common.collect

Best Java code snippets using org.apache.jena.ext.com.google.common.collect.HashMultimap (Showing top 3 results out of 315)

origin: org.apache.jena/jena-csv

@Override
public Column createColumn(Node p) {
  if (p == null)
    throw new NullPointerException("column node is null");
  if (columnIndex.containsKey(p))
    throw new IllegalArgumentException("column already exists: '"
        + p.toString());
  columnIndex.put(p, new ColumnImpl(this, p));
  columnList.add(columnIndex.get(p));
  valueIndex.put(p, new HashMap<Node, Node>());
  valueReverseIndex.put(p, HashMultimap.create());
  return getColumn(p);
}
origin: apache/jena

String uniqueIdField = qsol1.contains("uidField") ? qsol1.getLiteral("uidField").getLexicalForm() : null;
Multimap<String, Node> mapDefs = HashMultimap.create() ; 
Map<String, Analyzer> analyzerDefs = new HashMap<>();
Map<String, Boolean> noIndexDefs = new HashMap<>();
origin: org.apache.jena/jena-text

String uniqueIdField = qsol1.contains("uidField") ? qsol1.getLiteral("uidField").getLexicalForm() : null;
Multimap<String, Node> mapDefs = HashMultimap.create() ; 
Map<String, Analyzer> analyzerDefs = new HashMap<>();
Map<String, Boolean> noIndexDefs = new HashMap<>();
org.apache.jena.ext.com.google.common.collectHashMultimap

Most used methods

  • create

Popular in Java

  • Running tasks concurrently on multiple threads
  • compareTo (BigDecimal)
  • putExtra (Intent)
  • setScale (BigDecimal)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now