net.rgielen.com4j.office2010.excel.XlLineStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlLineStyle implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlContinuous(1),
/**
*
* The value of this constant is -4115
*
*/
xlDash(-4115),
/**
*
* The value of this constant is 4
*
*/
xlDashDot(4),
/**
*
* The value of this constant is 5
*
*/
xlDashDotDot(5),
/**
*
* The value of this constant is -4118
*
*/
xlDot(-4118),
/**
*
* The value of this constant is -4119
*
*/
xlDouble(-4119),
/**
*
* The value of this constant is 13
*
*/
xlSlantDashDot(13),
/**
*
* The value of this constant is -4142
*
*/
xlLineStyleNone(-4142),
;
private final int value;
XlLineStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}