net.rgielen.com4j.office2010.office.MsoCharacterSet Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoCharacterSet implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
msoCharacterSetArabic(1),
/**
*
* The value of this constant is 2
*
*/
msoCharacterSetCyrillic(2),
/**
*
* The value of this constant is 3
*
*/
msoCharacterSetEnglishWesternEuropeanOtherLatinScript(3),
/**
*
* The value of this constant is 4
*
*/
msoCharacterSetGreek(4),
/**
*
* The value of this constant is 5
*
*/
msoCharacterSetHebrew(5),
/**
*
* The value of this constant is 6
*
*/
msoCharacterSetJapanese(6),
/**
*
* The value of this constant is 7
*
*/
msoCharacterSetKorean(7),
/**
*
* The value of this constant is 8
*
*/
msoCharacterSetMultilingualUnicode(8),
/**
*
* The value of this constant is 9
*
*/
msoCharacterSetSimplifiedChinese(9),
/**
*
* The value of this constant is 10
*
*/
msoCharacterSetThai(10),
/**
*
* The value of this constant is 11
*
*/
msoCharacterSetTraditionalChinese(11),
/**
*
* The value of this constant is 12
*
*/
msoCharacterSetVietnamese(12),
;
private final int value;
MsoCharacterSet(int value) { this.value=value; }
public int comEnumValue() { return value; }
}