net.rgielen.com4j.office2010.excel.XlCVError Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlCVError implements ComEnum {
/**
*
* The value of this constant is 2007
*
*/
xlErrDiv0(2007),
/**
*
* The value of this constant is 2042
*
*/
xlErrNA(2042),
/**
*
* The value of this constant is 2029
*
*/
xlErrName(2029),
/**
*
* The value of this constant is 2000
*
*/
xlErrNull(2000),
/**
*
* The value of this constant is 2036
*
*/
xlErrNum(2036),
/**
*
* The value of this constant is 2023
*
*/
xlErrRef(2023),
/**
*
* The value of this constant is 2015
*
*/
xlErrValue(2015),
;
private final int value;
XlCVError(int value) { this.value=value; }
public int comEnumValue() { return value; }
}