net.rgielen.com4j.office2010.excel.XlArrowHeadStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlArrowHeadStyle implements ComEnum {
/**
*
* The value of this constant is 3
*
*/
xlArrowHeadStyleClosed(3),
/**
*
* The value of this constant is 5
*
*/
xlArrowHeadStyleDoubleClosed(5),
/**
*
* The value of this constant is 4
*
*/
xlArrowHeadStyleDoubleOpen(4),
/**
*
* The value of this constant is -4142
*
*/
xlArrowHeadStyleNone(-4142),
/**
*
* The value of this constant is 2
*
*/
xlArrowHeadStyleOpen(2),
;
private final int value;
XlArrowHeadStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}