net.rgielen.com4j.office2010.office.MsoArrowheadStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoArrowheadStyle implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoArrowheadStyleMixed(-2),
/**
*
* The value of this constant is 1
*
*/
msoArrowheadNone(1),
/**
*
* The value of this constant is 2
*
*/
msoArrowheadTriangle(2),
/**
*
* The value of this constant is 3
*
*/
msoArrowheadOpen(3),
/**
*
* The value of this constant is 4
*
*/
msoArrowheadStealth(4),
/**
*
* The value of this constant is 5
*
*/
msoArrowheadDiamond(5),
/**
*
* The value of this constant is 6
*
*/
msoArrowheadOval(6),
;
private final int value;
MsoArrowheadStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}