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