com.mindoo.domino.jna.constants.OSDirectory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domino-jna Show documentation
Show all versions of domino-jna Show documentation
Java project to access the HCL Domino C API using Java Native Access (JNA)
The newest version!
package com.mindoo.domino.jna.constants;
/**
* Constants to read platform directories
*/
public enum OSDirectory {
/** Directory of Domino executable */
EXECUTABLE,
/** Domino data directory */
DATA,
/** Domino temp directory */
TEMP,
/** DAOS Base directory */
// commented out, not compatible with later Notes version
// DAOS,
/** Temporary folder used for view rebuilds */
VIEWREBUILD;
}