/** * This file is part of d:swarm graph extension. * * d:swarm graph extension is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * d:swarm graph extension is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with d:swarm graph extension. If not, see <http://www.gnu.org/licenses/>. */ package org.dswarm.graph; /** * @author tgaengler */ public final class GraphIndexStatics { public static final String RESOURCES_INDEX_NAME = "resources"; public static final String RESOURCES_W_DATA_MODEL_INDEX_NAME = "resources_w_data_model"; public static final String RESOURCE_TYPES_INDEX_NAME = "resource_types"; public static final String VALUES_INDEX_NAME = "values"; public static final String STATEMENT_HASHES_INDEX_NAME = "statement_hashes"; public static final String TEMP_STATEMENT_HASHES_INDEX_NAME = "temp_statement_hashes"; public static final String STATEMENT_UUIDS_INDEX_NAME = "statement_uuids"; public static final String NAMESPACE_PREFIXES_INDEX_NAME = "namespace_prefixes"; public static final String TEMP_NAMESPACE_PREFIXES_INDEX_NAME = "temp_namespace_prefixes"; public static final String IN_MEMORY_NAMESPACE_PREFIXES_INDEX_NAME = "in_memory_namespace_prefixes"; public static final String PREFIX_COUNTER_INDEX_NAME = "counters"; }