com.mindoo.domino.jna.errors.errortexts.IOdsErr 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)
package com.mindoo.domino.jna.errors.errortexts;
public interface IOdsErr extends IGlobalErr {
@ErrorText(text="This database cannot be read due to an invalid on disk structure")
short ERR_ODS = PKG_ODS+1;
@ErrorText(text="Cannot convert field - unsupported datatype")
short ERR_DATATYPE = PKG_ODS+2;
@ErrorText(text="Text is too big")
short ERR_ODS_TEXT_TOOBIG = PKG_ODS+3;
@ErrorText(text="Done enumerating CD buffer")
short ERR_ODS_ENUM_COMPLETE = PKG_ODS+4;
@ErrorText(text="No such entry")
short ERR_ODS_NO_SUCH_ENTRY = PKG_ODS+5;
@ErrorText(text="Zero length scratch file")
short ERR_ODS_FILE_ZEROLENGTH = PKG_ODS+6;
@ErrorText(text="Encountered zero length record.")
short ERR_ODS_REC_ZEROLENGTH = PKG_ODS+7;
@ErrorText(text="Encountered unknown record type.")
short ERR_ODS_REC_UNKNOWN = PKG_ODS+8;
@ErrorText(text="Input text is too short to be canonicalized")
short ERR_ODS_SHORT_INPUT = PKG_ODS+9;
@ErrorText(text="Input buffer is too small for read")
short ERR_ODS_SHORT_BUFFER = PKG_ODS+10;
@ErrorText(text="List Entry count in TEXT_LIST is invalid.")
short ERR_ODS_INVALID_LIST_ENTRY_COUNT = PKG_ODS+11;
@ErrorText(text="Range List or Range Entry count in TIME_RANGE is invalid.")
short ERR_ODS_INVALID_TIME_RANGE_ENTRY_COUNT = PKG_ODS+12;
@ErrorText(text="Invalid SCHED_ENTRY_EXT size.")
short ERR_ODS_INVALID_SCHED_LIST_EXT = PKG_ODS+13;
@ErrorText(text="Invalid SCHED_DETAIL_LIST size.")
short ERR_ODS_INVALID_SCHED_DETAIL_LIST = PKG_ODS+14;
@ErrorText(text="Invalid ITEM_TABLE detected")
short ERR_ODS_INVALID_ITEM_TABLE = PKG_ODS+15;
@ErrorText(text="Invalid RFC822TextItem detected")
short ERR_ODS_INVALID_RFC822TEXTITEM = PKG_ODS+16;
}