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