net.rgielen.com4j.office2010.excel.XlChartGallery Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlChartGallery implements ComEnum {
/**
*
* The value of this constant is 21
*
*/
xlBuiltIn(21),
/**
*
* The value of this constant is 22
*
*/
xlUserDefined(22),
/**
*
* The value of this constant is 23
*
*/
xlAnyGallery(23),
;
private final int value;
XlChartGallery(int value) { this.value=value; }
public int comEnumValue() { return value; }
}