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

📄 databaseroot.java

📁 这个是perst-269.zip下面的SOURCECODE,和大家分享了。
💻 JAVA
字号:
package org.garret.rdf;

import java.util.*;
import org.garret.perst.*;

/**
 * Root class for Perst storage
 */
public class DatabaseRoot extends PersistentResource 
{
   /**
    * Root object in the graph
    */
    public VersionHistory rootObject;
   /**
    * Index used to access object by URI prefix
    */
    public Index          prefixUriIndex;
   /**
    * Index used to access object by URI suffix
    */
    public Index          suffixUriIndex;
   /**
    * Index used to search object by string property name:value pair
    */
    public Index          strPropIndex;
   /**
    * Index used to search object by numeric property name:value pair
    */
    public Index          numPropIndex;
   /**
    * Index used to search object by datetime property name:value pair
    */
    public Index          timePropIndex;
   /**
    * Index used to search object by reference property name:value pair
    */
    public Index          refPropIndex;
   /**
    * Index used to locate property definition by property name
    */
    public FieldIndex     propDefIndex;
   /**
    * Index used to perform spatial search locating overlapped rectangles
    */
    public Index          inverseIndex;
   /**
    * Inverse keywords index
    */
    public SpatialIndexR2 spatialIndex;
   /**
    * Set of the latest versions
    */
    public IPersistentSet latest;
   /**
    * Timestamp index
    */
    public FieldIndex     timeIndex;
   /**
    * Type of the types
    */
    public VersionHistory metatype;
}

⌨️ 快捷键说明

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