net.rgielen.com4j.office2010.excel.XlPivotFieldOrientation Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlPivotFieldOrientation implements ComEnum {
/**
*
* The value of this constant is 2
*
*/
xlColumnField(2),
/**
*
* The value of this constant is 4
*
*/
xlDataField(4),
/**
*
* The value of this constant is 0
*
*/
xlHidden(0),
/**
*
* The value of this constant is 3
*
*/
xlPageField(3),
/**
*
* The value of this constant is 1
*
*/
xlRowField(1),
;
private final int value;
XlPivotFieldOrientation(int value) { this.value=value; }
public int comEnumValue() { return value; }
}