net.rgielen.com4j.office2010.excel.XlFindLookIn Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlFindLookIn implements ComEnum {
/**
*
* The value of this constant is -4123
*
*/
xlFormulas(-4123),
/**
*
* The value of this constant is -4144
*
*/
xlComments(-4144),
/**
*
* The value of this constant is -4163
*
*/
xlValues(-4163),
;
private final int value;
XlFindLookIn(int value) { this.value=value; }
public int comEnumValue() { return value; }
}