Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is poi-scratchpad-5.2.3.jar?
What Is poi-scratchpad-5.2.3.jar?
✍: FYIcenter.com
poi-scratchpad-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio.
poi-scratchpad-5.2.3.jar provides support for older versions of Microsoft document files like Word 97, Excel 97, PowerPoint 97, etc.
poi-scratchpad-5.2.3.jar is distributed as part of the poi-bin-5.2.3-20220909.zip download file.
JAR File Size and Download Location:
JAR name: poi-scratchpad-5.2.3.jar Target JDK version: 9 Dependency: poi.jar File name: poi-scratchpad.jar, poi-scratchpad-5.2.3.jar File size: 1897121 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-scratchpad-5.2.3.jar:
⏎ org/apache/poi/hwpf/model/types/BKFAbstractType.java
/* ==================================================================== 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. ==================================================================== */ package org.apache.poi.hwpf.model.types; import org.apache.poi.util.BitField; import org.apache.poi.util.Internal; import org.apache.poi.util.LittleEndian; /** * BooKmark First descriptor (BKF). * <p> * Class and fields descriptions are quoted from Microsoft Office Word 97-2007 * Binary File Format (.doc) Specification */ @Internal public abstract class BKFAbstractType { private static final BitField itcFirst = new BitField( 0x007F ); private static final BitField fPub = new BitField( 0x0080 ); private static final BitField itcLim = new BitField( 0x7F00 ); private static final BitField fCol = new BitField( 0x8000 ); protected short field_1_ibkl; protected short field_2_bkf_flags; protected BKFAbstractType() {} protected BKFAbstractType(BKFAbstractType other) { field_1_ibkl = other.field_1_ibkl; field_2_bkf_flags = other.field_2_bkf_flags; } protected void fillFields( byte[] data, int offset ) { field_1_ibkl = LittleEndian.getShort(data, 0x0 + offset); field_2_bkf_flags = LittleEndian.getShort(data, 0x2 + offset); } public void serialize( byte[] data, int offset ) { LittleEndian.putShort(data, 0x0 + offset, field_1_ibkl); LittleEndian.putShort(data, 0x2 + offset, field_2_bkf_flags); } /** * Size of record */ public static int getSize() { return 0 + 2 + 2; } public String toString() { StringBuilder builder = new StringBuilder(); builder.append("[BKF]\n"); builder.append(" .ibkl = "); builder.append(" (").append(getIbkl()).append(" )\n"); builder.append(" .bkf_flags = "); builder.append(" (").append(getBkf_flags()).append(" )\n"); builder.append(" .itcFirst = ").append(getItcFirst()).append('\n'); builder.append(" .fPub = ").append(isFPub()).append('\n'); builder.append(" .itcLim = ").append(getItcLim()).append('\n'); builder.append(" .fCol = ").append(isFCol()).append('\n'); builder.append("[/BKF]\n"); return builder.toString(); } /** * Index to BKL entry in plcfbkl that describes the ending position of this bookmark in the CP stream. */ public short getIbkl() { return field_1_ibkl; } /** * Index to BKL entry in plcfbkl that describes the ending position of this bookmark in the CP stream. */ public void setIbkl( short field_1_ibkl ) { this.field_1_ibkl = field_1_ibkl; } /** * Get the bkf_flags field for the BKF record. */ public short getBkf_flags() { return field_2_bkf_flags; } /** * Set the bkf_flags field for the BKF record. */ public void setBkf_flags( short field_2_bkf_flags ) { this.field_2_bkf_flags = field_2_bkf_flags; } /** * Sets the itcFirst field value. * When bkf.fCol==1, this is the index to the first column of a table column bookmark */ public void setItcFirst( byte value ) { field_2_bkf_flags = (short)itcFirst.setValue(field_2_bkf_flags, value); } /** * When bkf.fCol==1, this is the index to the first column of a table column bookmark * @return the itcFirst field value. */ public byte getItcFirst() { return ( byte )itcFirst.getValue(field_2_bkf_flags); } /** * Sets the fPub field value. * When 1, this indicates that this bookmark is marking the range of a Macintosh Publisher section */ public void setFPub( boolean value ) { field_2_bkf_flags = (short)fPub.setBoolean(field_2_bkf_flags, value); } /** * When 1, this indicates that this bookmark is marking the range of a Macintosh Publisher section * @return the fPub field value. */ public boolean isFPub() { return fPub.isSet(field_2_bkf_flags); } /** * Sets the itcLim field value. * When bkf.fCol==1, this is the index to limit column of a table column bookmark */ public void setItcLim( byte value ) { field_2_bkf_flags = (short)itcLim.setValue(field_2_bkf_flags, value); } /** * When bkf.fCol==1, this is the index to limit column of a table column bookmark * @return the itcLim field value. */ public byte getItcLim() { return ( byte )itcLim.getValue(field_2_bkf_flags); } /** * Sets the fCol field value. * When 1, this bookmark marks a range of columns in a table specified by (bkf.itcFirst, bkf.itcLim) */ public void setFCol( boolean value ) { field_2_bkf_flags = (short)fCol.setBoolean(field_2_bkf_flags, value); } /** * When 1, this bookmark marks a range of columns in a table specified by (bkf.itcFirst, bkf.itcLim) * @return the fCol field value. */ public boolean isFCol() { return fCol.isSet(field_2_bkf_flags); } }
⏎ org/apache/poi/hwpf/model/types/BKFAbstractType.java
Or download all of them as a single archive file:
File name: poi-scratchpad-5.2.3-src.zip File size: 1238744 bytes Release date: 2022-09-09 Download
⇒ What Is poi-examples-5.2.3.jar?
⇐ What Is poi-excelant-5.2.3.jar?
2017-03-22, 33690👍, 0💬
Popular Posts:
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
JDK 11 jdk.javadoc.jmod is the JMOD file for JDK 11 Java Document tool, which can be invoked by the ...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...