net.rgielen.com4j.office2010.excel.XlPivotFieldCalculation Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlPivotFieldCalculation implements ComEnum {
/**
*
* The value of this constant is 2
*
*/
xlDifferenceFrom(2),
/**
*
* The value of this constant is 9
*
*/
xlIndex(9),
/**
*
* The value of this constant is -4143
*
*/
xlNoAdditionalCalculation(-4143),
/**
*
* The value of this constant is 4
*
*/
xlPercentDifferenceFrom(4),
/**
*
* The value of this constant is 3
*
*/
xlPercentOf(3),
/**
*
* The value of this constant is 7
*
*/
xlPercentOfColumn(7),
/**
*
* The value of this constant is 6
*
*/
xlPercentOfRow(6),
/**
*
* The value of this constant is 8
*
*/
xlPercentOfTotal(8),
/**
*
* The value of this constant is 5
*
*/
xlRunningTotal(5),
/**
*
* The value of this constant is 10
*
*/
xlPercentOfParentRow(10),
/**
*
* The value of this constant is 11
*
*/
xlPercentOfParentColumn(11),
/**
*
* The value of this constant is 12
*
*/
xlPercentOfParent(12),
/**
*
* The value of this constant is 13
*
*/
xlPercentRunningTotal(13),
/**
*
* The value of this constant is 14
*
*/
xlRankAscending(14),
/**
*
* The value of this constant is 15
*
*/
xlRankDecending(15),
;
private final int value;
XlPivotFieldCalculation(int value) { this.value=value; }
public int comEnumValue() { return value; }
}