Example usage for org.apache.poi.ss.formula.ptg NamePtg getIndex

List of usage examples for org.apache.poi.ss.formula.ptg NamePtg getIndex

Introduction

In this page you can find the example usage for org.apache.poi.ss.formula.ptg NamePtg getIndex.

Prototype

public int getIndex() 

Source Link

Usage

From source file:com.dataart.spreadsheetanalytics.engine.PoiWorkbookConverters.java

License:Apache License

@Override
public EvaluationName getName(NamePtg namePtg) {
    return this.names.get(namePtg.getIndex());
}