org.ttzero.excel.entity.e3.PhoneTicprParser Maven / Gradle / Ivy
/*
* Copyright (c) 2019-2020, [email protected] All Rights Reserved.
*
* Licensed 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.
*/
package org.ttzero.excel.entity.e3;
import org.ttzero.excel.reader.Dimension;
import java.util.Arrays;
/**
* 5.77 PHONETICPR
*
* This record contains default settings for the
* “Asian Phonetic Settings” dialog and the addresses
* of all cells which show Asian phonetic text.
*
* @author guanquan.wang on 2019-02-02
*/
public class PhoneTicprParser {
public static PhoneTicpr get(Block block) {
// Size of next data
short size = block.nextShort();
PhoneTicpr ticpr = new PhoneTicpr();
// Index to FONT record (➜5.45) used for Asian phonetic text of new cells
ticpr.fontIndex = block.nextShort();
// Additional settings used for Asian phonetic text of new cells
ticpr.option = Option.of(block.nextShort());
ticpr.cellRanges = DimensionArrayParser.get(block);
return ticpr;
}
public static short getId() {
return ParserIdentifier.PHONETICPR;
}
public static class PhoneTicpr {
short fontIndex;
Option option;
Dimension[] cellRanges;
@Override
public String toString() {
return "fontIndex: " + fontIndex +
" option: " + option +
" cellRanges: " + Arrays.toString(cellRanges);
}
}
}