net.rgielen.com4j.office2010.office.XlUnderlineStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum XlUnderlineStyle implements ComEnum {
/**
*
* The value of this constant is -4119
*
*/
xlUnderlineStyleDouble(-4119),
/**
*
* The value of this constant is 5
*
*/
xlUnderlineStyleDoubleAccounting(5),
/**
*
* The value of this constant is -4142
*
*/
xlUnderlineStyleNone(-4142),
/**
*
* The value of this constant is 2
*
*/
xlUnderlineStyleSingle(2),
/**
*
* The value of this constant is 4
*
*/
xlUnderlineStyleSingleAccounting(4),
;
private final int value;
XlUnderlineStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}