Java Doc for StatementImpl.java in  » RSS-RDF » Jena-2.5.5 » com » hp » hpl » jena » rdf » model » impl » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Jena 2.5.5 » com.hp.hpl.jena.rdf.model.impl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.hp.hpl.jena.rdf.model.impl.StatementBase
      com.hp.hpl.jena.rdf.model.impl.StatementImpl

StatementImpl
public class StatementImpl extends StatementBase implements Statement(Code)
An implementation of Statement.
author:
   bwm
version:
   $Name: $ $Revision: 1.32 $ $Date: 2008/01/02 12:04:57 $


Field Summary
protected static  ModelComempty
    
protected  RDFNodeobject
    
protected  Propertypredicate
    
protected  Resourcesubject
    

Constructor Summary
public  StatementImpl(Resource subject, Property predicate, RDFNode object, ModelCom model)
    
public  StatementImpl(Resource subject, Property predicate, RDFNode object)
    

Method Summary
public  ResourceasResource()
    
public  TripleasTriple()
    
public static  Triple[]asTriples(Statement[] statements)
     returns an array of triples corresponding to the array of statements; ie the i'th element of the result is the i'th element of the input as a triple.
public static  RDFNodecreateObject(Node n, EnhGraph g)
     create an RDF node which might be a literal, or not.
public  ReifiedStatementcreateReifiedStatement()
    
public  ReifiedStatementcreateReifiedStatement(String uri)
     create a ReifiedStatement corresponding to this Statement and with the given _uri_.
public  booleanequals(Object o)
     .equals() defers to .sameAs so we only get the complexity of one cast.
public  AltgetAlt()
    
public  BaggetBag()
    
public  LiteralgetLiteral()
     get the object field of this statement, insisting that it be a Literal.
public  RDFNodegetObject()
    
public  ObjectgetObject(ObjectF f)
    
public  PropertygetPredicate()
    
public  StatementgetProperty(Property p)
    
public  ResourcegetResource()
    
public  ResourcegetResource(ResourceF f)
    
public  SeqgetSeq()
    
public  StatementgetStatementProperty(Property p)
    
public  ResourcegetSubject()
    
public  inthashCode()
    
public  booleanisReified()
    
public  RSIteratorlistReifiedStatements()
    
public  Statementremove()
    
public  voidremoveReification()
    
protected  StatementImplreplace(RDFNode n)
    
public static  StatementtoStatement(Triple t, ModelCom eg)
     create a Statement from the triple _t_ in the enhanced graph _eg_.

Field Detail
empty
protected static ModelCom empty(Code)



object
protected RDFNode object(Code)



predicate
protected Property predicate(Code)



subject
protected Resource subject(Code)




Constructor Detail
StatementImpl
public StatementImpl(Resource subject, Property predicate, RDFNode object, ModelCom model)(Code)
Creates new StatementImpl



StatementImpl
public StatementImpl(Resource subject, Property predicate, RDFNode object)(Code)




Method Detail
asResource
public Resource asResource()(Code)



asTriple
public Triple asTriple()(Code)



asTriples
public static Triple[] asTriples(Statement[] statements)(Code)
returns an array of triples corresponding to the array of statements; ie the i'th element of the result is the i'th element of the input as a triple.
Parameters:
  statements - the array of statements to convert the corresponding array of triples



createObject
public static RDFNode createObject(Node n, EnhGraph g)(Code)
create an RDF node which might be a literal, or not.



createReifiedStatement
public ReifiedStatement createReifiedStatement()(Code)
create a ReifiedStatement corresponding to this Statement



createReifiedStatement
public ReifiedStatement createReifiedStatement(String uri)(Code)
create a ReifiedStatement corresponding to this Statement and with the given _uri_.



equals
public boolean equals(Object o)(Code)
.equals() defers to .sameAs so we only get the complexity of one cast.



getAlt
public Alt getAlt()(Code)



getBag
public Bag getBag()(Code)



getLiteral
public Literal getLiteral()(Code)
get the object field of this statement, insisting that it be a Literal. If it isn't, throw LiteralRequiredException.



getObject
public RDFNode getObject()(Code)



getObject
public Object getObject(ObjectF f)(Code)



getPredicate
public Property getPredicate()(Code)



getProperty
public Statement getProperty(Property p)(Code)



getResource
public Resource getResource()(Code)



getResource
public Resource getResource(ResourceF f)(Code)



getSeq
public Seq getSeq()(Code)



getStatementProperty
public Statement getStatementProperty(Property p)(Code)



getSubject
public Resource getSubject()(Code)



hashCode
public int hashCode()(Code)



isReified
public boolean isReified()(Code)



listReifiedStatements
public RSIterator listReifiedStatements()(Code)



remove
public Statement remove()(Code)



removeReification
public void removeReification()(Code)



replace
protected StatementImpl replace(RDFNode n)(Code)
it turns out to be handy to return the new StatementImpl as the result



toStatement
public static Statement toStatement(Triple t, ModelCom eg)(Code)
create a Statement from the triple _t_ in the enhanced graph _eg_. The Statement has subject, predicate, and object corresponding to those of _t_.



Fields inherited from com.hp.hpl.jena.rdf.model.impl.StatementBase
final protected ModelCom model(Code)(Java Doc)

Methods inherited from com.hp.hpl.jena.rdf.model.impl.StatementBase
public Statement changeLiteralObject(boolean o)(Code)(Java Doc)
public Statement changeLiteralObject(long o)(Code)(Java Doc)
public Statement changeLiteralObject(char o)(Code)(Java Doc)
public Statement changeLiteralObject(double o)(Code)(Java Doc)
public Statement changeLiteralObject(float o)(Code)(Java Doc)
public Statement changeLiteralObject(int o)(Code)(Java Doc)
public Statement changeObject(boolean o)(Code)(Java Doc)
public Statement changeObject(long o)(Code)(Java Doc)
public Statement changeObject(float o)(Code)(Java Doc)
public Statement changeObject(double o)(Code)(Java Doc)
public Statement changeObject(String o)(Code)(Java Doc)
public Statement changeObject(String o, boolean wellFormed)(Code)(Java Doc)
public Statement changeObject(String o, String l)(Code)(Java Doc)
public Statement changeObject(String o, String l, boolean wellFormed)(Code)(Java Doc)
public Statement changeObject(RDFNode o)(Code)(Java Doc)
public Statement changeObject(Object o)(Code)(Java Doc)
public Statement changeTypedObject(double o)(Code)(Java Doc)
public boolean getBoolean()(Code)(Java Doc)
public byte getByte()(Code)(Java Doc)
public char getChar()(Code)(Java Doc)
public double getDouble()(Code)(Java Doc)
public float getFloat()(Code)(Java Doc)
public int getInt()(Code)(Java Doc)
public String getLanguage()(Code)(Java Doc)
abstract public Literal getLiteral()(Code)(Java Doc)
public long getLong()(Code)(Java Doc)
public Model getModel()(Code)(Java Doc)
abstract public RDFNode getObject()(Code)(Java Doc)
abstract public Property getPredicate()(Code)(Java Doc)
abstract public Resource getResource()(Code)(Java Doc)
public short getShort()(Code)(Java Doc)
public String getString()(Code)(Java Doc)
abstract public Resource getSubject()(Code)(Java Doc)
public boolean getWellFormed()(Code)(Java Doc)
public boolean hasWellFormedXML()(Code)(Java Doc)
protected Resource mustBeResource(RDFNode n)(Code)(Java Doc)
protected String objectString(RDFNode object)(Code)(Java Doc)
abstract protected StatementImpl replace(RDFNode n)(Code)(Java Doc)
protected StatementImpl stringReplace(String s, String lang, boolean wellFormed)(Code)(Java Doc)
protected StatementImpl stringReplace(String s)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

w___ww___._j___a__v_a___2s___.___c___o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.