congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PrefixMapping2.getNsPrefixMap
Code IndexAdd Tabnine to your IDE (free)

How to use
getNsPrefixMap
method
in
org.apache.jena.sparql.util.PrefixMapping2

Best Java code snippets using org.apache.jena.sparql.util.PrefixMapping2.getNsPrefixMap (Showing top 4 results out of 315)

origin: dice-group/NLIWOD

@Override
public Map<String, String> getNsPrefixMap(final boolean includeGlobalMap) {
  return super.getNsPrefixMap(false);
}
origin: apache/jena

/** @see org.apache.jena.shared.PrefixMapping#getNsPrefixMap() */
@Override
public Map<String, String> getNsPrefixMap() { return getNsPrefixMap(true) ; }

origin: apache/jena

  @Override
  public boolean samePrefixMappingAs(PrefixMapping other)
  {
    if ( other == null )
      return false ;
    
    if ( other instanceof PrefixMapping2 )
    {
      PrefixMapping2 other2 = (PrefixMapping2)other ;
      
      return this.pmapGlobal.samePrefixMappingAs(other2.pmapGlobal) && 
          this.pmapLocal.samePrefixMappingAs(other2.pmapLocal) ;
    }
    
    // Do by map copy.
    return getNsPrefixMap().equals( other.getNsPrefixMap() );
  }
}
origin: apache/jena

pmap = pm2.getNsPrefixMap(false) ;
org.apache.jena.sparql.utilPrefixMapping2getNsPrefixMap

Popular methods of PrefixMapping2

  • <init>
  • getLocalPrefixMapping
  • setNsPrefix
  • getGlobalPrefixMapping
  • getNsPrefixURI
  • getNsURIPrefix

Popular in Java

  • Reactive rest calls using spring rest template
  • addToBackStack (FragmentTransaction)
  • compareTo (BigDecimal)
  • startActivity (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JList (javax.swing)
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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