Inspired by bug #44958 - Record level support for Data Tables. (No formula parser...
[poi.git] / src / java / org / apache / poi / hssf / record / UncalcedRecord.java
bloba67b0b5af4adb9b2eed6868bd0ef87778869b7b1
1 /* ====================================================================
2 Licensed to the Apache Software Foundation (ASF) under one or more
3 contributor license agreements. See the NOTICE file distributed with
4 this work for additional information regarding copyright ownership.
5 The ASF licenses this file to You under the Apache License, Version 2.0
6 (the "License"); you may not use this file except in compliance with
7 the License. You may obtain a copy of the License at
9 http://www.apache.org/licenses/LICENSE-2.0
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 ==================================================================== */
18 package org.apache.poi.hssf.record;
20 import org.apache.poi.util.LittleEndian;
22 /**
23 * Title: Uncalced Record
24 * <P>
25 * If this record occurs in the Worksheet Substream, it indicates that the formulas have not
26 * been recalculated before the document was saved.
28 * @author Olivier Leprince
31 public class UncalcedRecord extends Record
33 public final static short sid = 0x5E;
35 /**
36 * Default constructor
38 public UncalcedRecord() {
40 /**
41 * read constructor
43 public UncalcedRecord(RecordInputStream in) {
44 super(in);
47 public short getSid() {
48 return sid;
51 protected void validateSid(short id) {
52 if (id != sid) {
53 throw new RecordFormatException("NOT AN UNCALCED RECORD");
57 protected void fillFields(RecordInputStream in) {
58 short unused = in.readShort();
61 public String toString() {
62 StringBuffer buffer = new StringBuffer();
63 buffer.append("[UNCALCED]\n");
64 buffer.append("[/UNCALCED]\n");
65 return buffer.toString();
68 public int serialize(int offset, byte[] data) {
69 LittleEndian.putShort(data, 0 + offset, sid);
70 LittleEndian.putShort(data, 2 + offset, (short) 2);
71 LittleEndian.putShort(data, 4 + offset, (short) 0); // unused
72 return getRecordSize();
75 public int getRecordSize() {
76 return UncalcedRecord.getStaticRecordSize();
79 public static int getStaticRecordSize() {
80 return 6;