net.rgielen.com4j.office2010.excel.XlAxisGroup Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlAxisGroup implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlPrimary(1),
/**
*
* The value of this constant is 2
*
*/
xlSecondary(2),
;
private final int value;
XlAxisGroup(int value) { this.value=value; }
public int comEnumValue() { return value; }
}