📄 rdfx.java
字号:
package edu.stanford.db.rdf.vocabulary.order_20000527;import org.w3c.rdf.model.*;/** * This class provides convenient access to schema information. * DO NOT MODIFY THIS FILE. * It was generated automatically by edu.stanford.db.rdf.vocabulary.Generator */public class RDFX { /** Namespace URI of this schema */ public static final String _Namespace = "http://interdataworking.com/vocabulary/order-20000527#"; /** Identifies the backward order of the relationship in a statement. */ public static Resource backwardOrder; /** Identifies the forward order of the relationship in a statement. */ public static Resource order; static { try { setNodeFactory(new org.w3c.rdf.implementation.model.NodeFactoryImpl()); } catch (ModelException ex) { ex.printStackTrace(System.err); } } private static Resource createResource(NodeFactory f, String suffix) throws ModelException { return f.createResource(_Namespace, suffix); } public static void setNodeFactory(NodeFactory f) throws ModelException { backwardOrder = createResource(f, "backwardOrder"); order = createResource(f, "order"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -