All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.anodoc.data.IHelperConstants Maven / Gradle / Ivy

package net.anotheria.anodoc.data;

/**
 * Some constants used by the assembling and dissembling routines.
 *
 * @author another
 * @version $Id: $Id
 */
public interface IHelperConstants {
	/**
	 * Used as delimiter for constants which are assembled from different parts.
	 */
	public static final char DELIMITER = '$';
	/**
	 * Used as prefix for list names when stored in modules.
	 */
	public static final String IDENTIFIER_LIST = "list";
	/**
	 * Used as prefix for doc names when stored in modules.
	 */
	public static final String IDENTIFIER_DOCUMENT = "doc";
	
	/**
	 * Used as name for type of stored object, for example document.
	 */
	public static final String IDENTIFIER_KEY = "__type_identifier__";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy