net.rgielen.com4j.office2010.excel.XlLocationInTable Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlLocationInTable implements ComEnum {
/**
*
* The value of this constant is -4110
*
*/
xlColumnHeader(-4110),
/**
*
* The value of this constant is 5
*
*/
xlColumnItem(5),
/**
*
* The value of this constant is 3
*
*/
xlDataHeader(3),
/**
*
* The value of this constant is 7
*
*/
xlDataItem(7),
/**
*
* The value of this constant is 2
*
*/
xlPageHeader(2),
/**
*
* The value of this constant is 6
*
*/
xlPageItem(6),
/**
*
* The value of this constant is -4153
*
*/
xlRowHeader(-4153),
/**
*
* The value of this constant is 4
*
*/
xlRowItem(4),
/**
*
* The value of this constant is 8
*
*/
xlTableBody(8),
;
private final int value;
XlLocationInTable(int value) { this.value=value; }
public int comEnumValue() { return value; }
}