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

📄 setmodel.java

📁 好东西啊!你看看就知道了
💻 JAVA
字号:
package org.w3c.rdf.model;/** * An RDF model that natively supports set operations `union', `difference' and `intersection'. * * @see org.w3c.rdf.util.SetOperations */public interface SetModel extends Model {  /**   * Set union with another model.   * @return  <code>this</code>, i.e. the model itself   */  public SetModel unite(Model m) throws ModelException;  /**   * Set difference with another model.   * @return  <code>this</code>, i.e. the model itself   */  public SetModel subtract(Model m) throws ModelException;  /**   * Set intersection with another model.   * @return  <code>this</code>, i.e. the model itself   */  public SetModel intersect(Model m) throws ModelException;}

⌨️ 快捷键说明

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