net.rgielen.com4j.office2010.excel.XlYesNoGuess Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlYesNoGuess implements ComEnum {
/**
*
* The value of this constant is 0
*
*/
xlGuess(0),
/**
*
* The value of this constant is 2
*
*/
xlNo(2),
/**
*
* The value of this constant is 1
*
*/
xlYes(1),
;
private final int value;
XlYesNoGuess(int value) { this.value=value; }
public int comEnumValue() { return value; }
}