
net.rgielen.com4j.office2010.word.WdDefaultFilePath Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdDefaultFilePath implements ComEnum {
/**
*
* The value of this constant is 0
*
*/
wdDocumentsPath(0),
/**
*
* The value of this constant is 1
*
*/
wdPicturesPath(1),
/**
*
* The value of this constant is 2
*
*/
wdUserTemplatesPath(2),
/**
*
* The value of this constant is 3
*
*/
wdWorkgroupTemplatesPath(3),
/**
*
* The value of this constant is 4
*
*/
wdUserOptionsPath(4),
/**
*
* The value of this constant is 5
*
*/
wdAutoRecoverPath(5),
/**
*
* The value of this constant is 6
*
*/
wdToolsPath(6),
/**
*
* The value of this constant is 7
*
*/
wdTutorialPath(7),
/**
*
* The value of this constant is 8
*
*/
wdStartupPath(8),
/**
*
* The value of this constant is 9
*
*/
wdProgramPath(9),
/**
*
* The value of this constant is 10
*
*/
wdGraphicsFiltersPath(10),
/**
*
* The value of this constant is 11
*
*/
wdTextConvertersPath(11),
/**
*
* The value of this constant is 12
*
*/
wdProofingToolsPath(12),
/**
*
* The value of this constant is 13
*
*/
wdTempFilePath(13),
/**
*
* The value of this constant is 14
*
*/
wdCurrentFolderPath(14),
/**
*
* The value of this constant is 15
*
*/
wdStyleGalleryPath(15),
/**
*
* The value of this constant is 19
*
*/
wdBorderArtPath(19),
;
private final int value;
WdDefaultFilePath(int value) { this.value=value; }
public int comEnumValue() { return value; }
}