net.rgielen.com4j.office2010.office.MsoTextCaps Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoTextCaps implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoCapsMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoNoCaps(0),
/**
*
* The value of this constant is 1
*
*/
msoSmallCaps(1),
/**
*
* The value of this constant is 2
*
*/
msoAllCaps(2),
;
private final int value;
MsoTextCaps(int value) { this.value=value; }
public int comEnumValue() { return value; }
}