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