⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statement.java

📁 好东西啊!你看看就知道了
💻 JAVA
字号:
/** * Simple Statement class * * * @author Sergey Melnik * @author Janne Saarela */package org.w3c.rdf.model;import org.w3c.rdf.model.*;/** * An RDF statement.<p> *  * Statements must implement <code>getURI()</code> according to a standard MD5-based algorithm. * * @see org.w3c.tools.crypt.DigestUtil * @see org.w3c.rdf.util.RDFDigestUtil */public interface Statement extends Resource {  /**   * @return subject of the triple   */  public Resource subject() throws ModelException;  /**   * @return predicate of the triple   */  public Resource predicate() throws ModelException;  /**   * @return object of the triple   */  public RDFNode object() throws ModelException;  /**   * @return the model that contains this triple, <code>null</code> if none   */  //  public RDFModel getOwnerModel();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -