congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Running tasks concurrently on multiple threads
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSystemService (Context)
  • getResourceAsStream (ClassLoader)
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Collectors (java.util.stream)
  • JFrame (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • 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