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

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

Introduction

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

Prototype

public boolean isBuiltInName() 

Source Link

Document

Convenience Function to determine if the name is a built-in name

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();
}