com.hp.hpl.jena.util
Class PrintUtil

java.lang.Object
  extended bycom.hp.hpl.jena.util.PrintUtil

public class PrintUtil
extends java.lang.Object

A collection of small utilites for pretty printing nodes, triples and associated things. The core functionality here is a static prefix map which is preloaded with known prefixes.

Version:
$Revision: 1.5 $ on $Date: 2003/06/24 16:55:45 $
Author:
Dave Reynolds

Field Summary
static java.lang.String egNS
          Default built in eg namespace used in testing
 
Constructor Summary
PrintUtil()
           
 
Method Summary
static java.lang.String expandQname(java.lang.String uri)
          Expand qnames to URIs.
static void init()
          Load built in prefixes.
static java.lang.String print(Node node)
          Return a simplified print string for a Node.
static java.lang.String print(java.lang.Object obj)
          Default print which just uses tostring
static java.lang.String print(RDFNode node)
          Return a simplified print string for an RDFNode.
static java.lang.String print(Statement stmt)
          Return a simplified print string for a statment
static java.lang.String print(Triple triple)
          Return a simplified print string for a Triple
static java.lang.String print(TriplePattern triple)
          Return a simplified print string for a TriplePattern
static void printIndent(java.io.PrintWriter out, int indent)
          Print an n-space indent to the given output stream
static void registerPrefix(java.lang.String prefix, java.lang.String namespace)
          Register a new prefix/namespace mapping which will be used to shorten the print strings for resources in known namespaces.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

egNS

public static final java.lang.String egNS
Default built in eg namespace used in testing

See Also:
Constant Field Values
Constructor Detail

PrintUtil

public PrintUtil()
Method Detail

init

public static void init()
Load built in prefixes.


registerPrefix

public static void registerPrefix(java.lang.String prefix,
                                  java.lang.String namespace)
Register a new prefix/namespace mapping which will be used to shorten the print strings for resources in known namespaces.


print

public static java.lang.String print(Node node)
Return a simplified print string for a Node.


print

public static java.lang.String print(RDFNode node)
Return a simplified print string for an RDFNode.


print

public static java.lang.String print(Triple triple)
Return a simplified print string for a Triple


print

public static java.lang.String print(TriplePattern triple)
Return a simplified print string for a TriplePattern


print

public static java.lang.String print(Statement stmt)
Return a simplified print string for a statment


print

public static java.lang.String print(java.lang.Object obj)
Default print which just uses tostring


expandQname

public static java.lang.String expandQname(java.lang.String uri)
Expand qnames to URIs. If the given URI appears to start with one of the registered prefixes then expand the prefix, otherwise return the original URI


printIndent

public static void printIndent(java.io.PrintWriter out,
                               int indent)
Print an n-space indent to the given output stream



Copyright © 2001-2003 Hewlett-Packard. All Rights Reserved.