Example usage for org.apache.poi.hssf.record NameRecord isComplexFunction

List of usage examples for org.apache.poi.hssf.record NameRecord isComplexFunction

Introduction

In this page you can find the example usage for org.apache.poi.hssf.record NameRecord isComplexFunction.

Prototype

public boolean isComplexFunction() 

Source Link

Usage

From source file:org.jreserve.gui.poi.read.xls.XlsReferenceUtilReader.java

License:Open Source License

private boolean isUserDefinedName(NameRecord record) {
    return !record.isMacro() && !record.isCommandName() && !record.isBuiltInName() && !record.isFunctionName()
            && !record.isComplexFunction();
}