元数据值中的 resource_type_id 是什么?

what is the resource_type_id in metadatavalue?

我是 dspace 的新手。我正在从 dspace 元数据值 table 中检索值。一个我不明白的是元数据值 table 中的 resource_type_id。 Resource_type_id 具有特定的值。集合名称及其描述的值为 3,比特流等值为 0。这些值代表什么?

DSpace 数据库表中 resource_type_id 列中的值引用 org.dspace.core.Constants class 中的常量:https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/core/Constants.java#L20

/** Type of bitstream objects */
public static final int BITSTREAM = 0;

/** Type of bundle objects */
public static final int BUNDLE = 1;

/** Type of item objects */
public static final int ITEM = 2;

/** Type of collection objects */
public static final int COLLECTION = 3;

/** Type of community objects */
public static final int COMMUNITY = 4;

/** DSpace site type */
public static final int SITE = 5;

/** Type of eperson groups */
public static final int GROUP = 6;

/** Type of individual eperson objects */
public static final int EPERSON = 7;