net.rgielen.com4j.office2010.excel.XlEditionFormat Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlEditionFormat implements ComEnum {
/**
*
* The value of this constant is 2
*
*/
xlBIFF(2),
/**
*
* The value of this constant is 1
*
*/
xlPICT(1),
/**
*
* The value of this constant is 4
*
*/
xlRTF(4),
/**
*
* The value of this constant is 8
*
*/
xlVALU(8),
;
private final int value;
XlEditionFormat(int value) { this.value=value; }
public int comEnumValue() { return value; }
}