1 6 7 8 package com.hp.hpl.jena.rdf.model; 9 10 import com.hp.hpl.jena.graph.*; 11 12 30 31 public interface Statement extends FrontsTriple 32 { 33 34 43 44 public boolean equals(Object o); 45 46 48 public int hashCode(); 49 50 53 public Resource getSubject(); 54 55 58 public Property getPredicate(); 59 60 63 public RDFNode getObject(); 64 65 81 public Statement getProperty(Property p) ; 82 83 95 public Statement getStatementProperty(Property p) ; 96 97 103 public Resource getResource() ; 104 105 111 public Literal getLiteral() ; 112 113 120 public boolean getBoolean() ; 121 122 129 public byte getByte() ; 130 131 138 public short getShort() ; 139 140 147 public int getInt() ; 148 149 156 public long getLong() ; 157 158 165 public char getChar() ; 166 167 174 public float getFloat() ; 175 176 183 public double getDouble() ; 184 185 192 public String getString() ; 193 194 200 public Resource getResource(ResourceF f) ; 201 202 208 public Object getObject(ObjectF f) ; 209 210 217 public Bag getBag() ; 218 219 226 public Alt getAlt() ; 227 228 235 public Seq getSeq() ; 236 237 243 public String getLanguage() ; 244 245 252 public boolean getWellFormed() ; 253 254 259 public Statement changeObject(boolean o) ; 260 261 268 public Statement changeObject(long o) ; 269 270 277 public Statement changeObject(char o) ; 278 279 286 public Statement changeObject(float o) ; 287 288 295 public Statement changeObject(double o) ; 296 297 304 public Statement changeObject(String o) ; 305 306 314 public Statement changeObject(String o, boolean wellFormed) ; 315 316 324 public Statement changeObject(String o, String l) ; 325 326 334 public Statement changeObject(String o, String l, boolean wellFormed) 335 ; 336 337 343 public Statement changeObject(RDFNode o) ; 344 345 354 public Statement changeObject(Object o) ; 355 356 364 public Statement remove() ; 365 366 371 boolean isReified(); 372 373 377 ReifiedStatement createReifiedStatement(); 378 379 383 ReifiedStatement createReifiedStatement( String uri ); 384 385 389 RSIterator listReifiedStatements(); 390 391 394 Model getModel(); 395 396 401 void removeReification(); 402 } 403 | Popular Tags |