Tabnine Logo
NodeFormatter.formatURI
Code IndexAdd Tabnine to your IDE (free)

How to use
formatURI
method
in
org.apache.jena.riot.out.NodeFormatter

Best Java code snippets using org.apache.jena.riot.out.NodeFormatter.formatURI (Showing top 4 results out of 315)

origin: apache/jena

@Override
public void base(String base) {
  out.print("BASE") ;
  out.print("    ") ;
  nodeFmt.formatURI(out, base); 
  out.println();
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

@Override
public void base(String base) {
  out.print("BASE") ;
  out.print("    ") ;
  nodeFmt.formatURI(out, base); 
  out.println();
}
origin: apache/jena

@Override
public void prefix(String prefix, String iri) {
  out.print("PREFIX") ;
  out.print("  ") ;
  out.print(prefix) ;
  out.print(":  ") ;
  nodeFmt.formatURI(out, iri);
  out.println();
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

@Override
public void prefix(String prefix, String iri) {
  out.print("PREFIX") ;
  out.print("  ") ;
  out.print(prefix) ;
  out.print(":  ") ;
  nodeFmt.formatURI(out, iri);
  out.println();
}
org.apache.jena.riot.outNodeFormatterformatURI

Javadoc

Node is guaranteed to be a URI node

Popular methods of NodeFormatter

  • format
  • formatLiteral
    Node is guaranteed to be a literal

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • 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