/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ /* * HSSFDataFormat.java * * Created on December 18, 2001, 12:42 PM */ package org.apache.poi.hssf.usermodel; import java.util.Iterator; import java.util.Vector; import org.apache.poi.hssf.model.InternalWorkbook; import org.apache.poi.hssf.record.FormatRecord; import org.apache.poi.ss.usermodel.BuiltinFormats; import org.apache.poi.ss.usermodel.DataFormat; /** * Identifies both built-in and user defined formats within a workbook.<p/> * See {@link BuiltinFormats} for a list of supported built-in formats.<p/> * * <b>International Formats</b><br/> * Since version 2003 Excel has supported international formats. These are denoted * with a prefix "[$-xxx]" (where xxx is a 1-7 digit hexadecimal number). * See the Microsoft article * <a href="http://office.microsoft.com/assistance/hfws.aspx?AssetID=HA010346351033&CTT=6&Origin=EC010272491033"> * Creating international number formats * </a> for more details on these codes. * * @author Andrew C. Oliver (acoliver at apache dot org) * @author Shawn M. Laubach (slaubach at apache dot org) */ public final class HSSFDataFormat implements DataFormat { private static final String[] _builtinFormats = BuiltinFormats.getAll(); private final Vector<String> _formats = new Vector<>(); private boolean _movedBuiltins = false; // Flag to see if need to // check the built in list // or if the regular list // has all entries. /** * Constructs a new data formatter. It takes a workbook to have * access to the workbooks format records. * @param workbook the workbook the formats are tied to. */ HSSFDataFormat(InternalWorkbook workbook) { Iterator<FormatRecord> i = workbook.getFormats().iterator(); while (i.hasNext()) { FormatRecord r = i.next(); if (_formats.size() < r.getIndexCode() + 1) { _formats.setSize(r.getIndexCode() + 1); } _formats.set(r.getIndexCode(), r.getFormatString()); } } /** * get the format string that matches the given format index * @param index of a format * @return string represented at index of format or null if there is not a format at that index */ public String getFormat(short index) { if (_movedBuiltins) { return _formats.get(index); } if (_builtinFormats.length > index && _builtinFormats[index] != null) { return _builtinFormats[index]; } return _formats.get(index); } }