[]
Serializable, Comparable<LookAt>, ConstableUsed with FindOptions.setLookAt(LookAt) and ReplaceOptions.setLookAt(LookAt) to control the matching behavior of IRange.find(Object,IRange,FindOptions) and IRange.replace(Object,Object,ReplaceOptions).
worksheet.getRange("A1").setValue("Hello World");
worksheet.getRange("A2").setValue("Hello");
FindOptions options = new FindOptions();
options.setLookAt(LookAt.Whole);
IRange found = worksheet.getRange("A1:A2").find("Hello", null, options);
// found refers to A2, because only "Hello" matches the whole cell content
Enum.EnumDesc<E extends Enum<E>>static LookAtforValue(int value) intgetValue()static LookAtstatic LookAt[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is nullvalue - The ordinal value.