net.rgielen.com4j.office2010.office.MsoWarpFormat Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoWarpFormat implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoWarpFormatMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoWarpFormat1(0),
/**
*
* The value of this constant is 1
*
*/
msoWarpFormat2(1),
/**
*
* The value of this constant is 2
*
*/
msoWarpFormat3(2),
/**
*
* The value of this constant is 3
*
*/
msoWarpFormat4(3),
/**
*
* The value of this constant is 4
*
*/
msoWarpFormat5(4),
/**
*
* The value of this constant is 5
*
*/
msoWarpFormat6(5),
/**
*
* The value of this constant is 6
*
*/
msoWarpFormat7(6),
/**
*
* The value of this constant is 7
*
*/
msoWarpFormat8(7),
/**
*
* The value of this constant is 8
*
*/
msoWarpFormat9(8),
/**
*
* The value of this constant is 9
*
*/
msoWarpFormat10(9),
/**
*
* The value of this constant is 10
*
*/
msoWarpFormat11(10),
/**
*
* The value of this constant is 11
*
*/
msoWarpFormat12(11),
/**
*
* The value of this constant is 12
*
*/
msoWarpFormat13(12),
/**
*
* The value of this constant is 13
*
*/
msoWarpFormat14(13),
/**
*
* The value of this constant is 14
*
*/
msoWarpFormat15(14),
/**
*
* The value of this constant is 15
*
*/
msoWarpFormat16(15),
/**
*
* The value of this constant is 16
*
*/
msoWarpFormat17(16),
/**
*
* The value of this constant is 17
*
*/
msoWarpFormat18(17),
/**
*
* The value of this constant is 18
*
*/
msoWarpFormat19(18),
/**
*
* The value of this constant is 19
*
*/
msoWarpFormat20(19),
/**
*
* The value of this constant is 20
*
*/
msoWarpFormat21(20),
/**
*
* The value of this constant is 21
*
*/
msoWarpFormat22(21),
/**
*
* The value of this constant is 22
*
*/
msoWarpFormat23(22),
/**
*
* The value of this constant is 23
*
*/
msoWarpFormat24(23),
/**
*
* The value of this constant is 24
*
*/
msoWarpFormat25(24),
/**
*
* The value of this constant is 25
*
*/
msoWarpFormat26(25),
/**
*
* The value of this constant is 26
*
*/
msoWarpFormat27(26),
/**
*
* The value of this constant is 27
*
*/
msoWarpFormat28(27),
/**
*
* The value of this constant is 28
*
*/
msoWarpFormat29(28),
/**
*
* The value of this constant is 29
*
*/
msoWarpFormat30(29),
/**
*
* The value of this constant is 30
*
*/
msoWarpFormat31(30),
/**
*
* The value of this constant is 31
*
*/
msoWarpFormat32(31),
/**
*
* The value of this constant is 32
*
*/
msoWarpFormat33(32),
/**
*
* The value of this constant is 33
*
*/
msoWarpFormat34(33),
/**
*
* The value of this constant is 34
*
*/
msoWarpFormat35(34),
/**
*
* The value of this constant is 35
*
*/
msoWarpFormat36(35),
/**
*
* The value of this constant is 36
*
*/
msoWarpFormat37(36),
;
private final int value;
MsoWarpFormat(int value) { this.value=value; }
public int comEnumValue() { return value; }
}