net.rgielen.com4j.office2010.office.MsoLastModified Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoLastModified implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
msoLastModifiedYesterday(1),
/**
*
* The value of this constant is 2
*
*/
msoLastModifiedToday(2),
/**
*
* The value of this constant is 3
*
*/
msoLastModifiedLastWeek(3),
/**
*
* The value of this constant is 4
*
*/
msoLastModifiedThisWeek(4),
/**
*
* The value of this constant is 5
*
*/
msoLastModifiedLastMonth(5),
/**
*
* The value of this constant is 6
*
*/
msoLastModifiedThisMonth(6),
/**
*
* The value of this constant is 7
*
*/
msoLastModifiedAnyTime(7),
;
private final int value;
MsoLastModified(int value) { this.value=value; }
public int comEnumValue() { return value; }
}