net.rgielen.com4j.office2010.excel.XlDisplayUnit Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlDisplayUnit implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
xlHundreds(-2),
/**
*
* The value of this constant is -3
*
*/
xlThousands(-3),
/**
*
* The value of this constant is -4
*
*/
xlTenThousands(-4),
/**
*
* The value of this constant is -5
*
*/
xlHundredThousands(-5),
/**
*
* The value of this constant is -6
*
*/
xlMillions(-6),
/**
*
* The value of this constant is -7
*
*/
xlTenMillions(-7),
/**
*
* The value of this constant is -8
*
*/
xlHundredMillions(-8),
/**
*
* The value of this constant is -9
*
*/
xlThousandMillions(-9),
/**
*
* The value of this constant is -10
*
*/
xlMillionMillions(-10),
;
private final int value;
XlDisplayUnit(int value) { this.value=value; }
public int comEnumValue() { return value; }
}