net.rgielen.com4j.office2010.excel.XlBordersIndex Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlBordersIndex implements ComEnum {
/**
*
* The value of this constant is 12
*
*/
xlInsideHorizontal(12),
/**
*
* The value of this constant is 11
*
*/
xlInsideVertical(11),
/**
*
* The value of this constant is 5
*
*/
xlDiagonalDown(5),
/**
*
* The value of this constant is 6
*
*/
xlDiagonalUp(6),
/**
*
* The value of this constant is 9
*
*/
xlEdgeBottom(9),
/**
*
* The value of this constant is 7
*
*/
xlEdgeLeft(7),
/**
*
* The value of this constant is 10
*
*/
xlEdgeRight(10),
/**
*
* The value of this constant is 8
*
*/
xlEdgeTop(8),
;
private final int value;
XlBordersIndex(int value) { this.value=value; }
public int comEnumValue() { return value; }
}