⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 documentsummaryinformation.java

📁 Office格式转换代码
💻 JAVA
字号:
/* *  ==================================================================== *  The Apache Software License, Version 1.1 * *  Copyright (c) 2000 The Apache Software Foundation.  All rights *  reserved. * *  Redistribution and use in source and binary forms, with or without *  modification, are permitted provided that the following conditions *  are met: * *  1. Redistributions of source code must retain the above copyright *  notice, this list of conditions and the following disclaimer. * *  2. Redistributions in binary form must reproduce the above copyright *  notice, this list of conditions and the following disclaimer in *  the documentation and/or other materials provided with the *  distribution. * *  3. The end-user documentation included with the redistribution, *  if any, must include the following acknowledgment: *  "This product includes software developed by the *  Apache Software Foundation (http://www.apache.org/)." *  Alternately, this acknowledgment may appear in the software itself, *  if and wherever such third-party acknowledgments normally appear. * *  4. The names "Apache" and "Apache Software Foundation" must *  not be used to endorse or promote products derived from this *  software without prior written permission. For written *  permission, please contact apache@apache.org. * *  5. Products derived from this software may not be called "Apache", *  nor may "Apache" appear in their name, without prior written *  permission of the Apache Software Foundation. * *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *  DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR *  ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF *  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT *  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *  SUCH DAMAGE. *  ==================================================================== * *  This software consists of voluntary contributions made by many *  individuals on behalf of the Apache Software Foundation.  For more *  information on the Apache Software Foundation, please see *  <http://www.apache.org/>. */package org.apache.poi.hpsf;import java.io.*;import java.util.*;import org.apache.poi.hpsf.wellknown.*;/** * <p>Convenience class representing a DocumentSummary Information stream in a * Microsoft Office document.</p> * * @author Rainer Klute (klute@rainer-klute.de) * @author Drew Varner (Drew.Varner closeTo sc.edu) * @see SummaryInformation * @version $Id: DocumentSummaryInformation.java,v 1.9 2003/02/22 14:27:15 klute Exp $ * @since 2002-02-09 */public class DocumentSummaryInformation extends SpecialPropertySet{    /**     * <p>The document name a document summary information stream     * usually has in a POIFS filesystem.</p>     */    public static final String DEFAULT_STREAM_NAME =        "\005DocumentSummaryInformation";    /**     * <p>Creates a {@link DocumentSummaryInformation} from a given     * {@link PropertySet}.</p>     *     * @param ps A property set which should be created from a     * document summary information stream.     * @throws UnexpectedPropertySetTypeException if <var>ps</var>     * does not contain a document summary information stream.     */    public DocumentSummaryInformation(final PropertySet ps)	throws UnexpectedPropertySetTypeException    {        super(ps);        if (!isDocumentSummaryInformation())            throw new UnexpectedPropertySetTypeException		("Not a " + getClass().getName());    }    /**     * <p>Returns the stream's category (or <code>null</code>).</p>     *     * @return The category value     */    public String getCategory()    {        return (String) getProperty(PropertyIDMap.PID_CATEGORY);    }    /**     * <p>Returns the stream's presentation format (or     * <code>null</code>).</p>     *     * @return The presentationFormat value     */    public String getPresentationFormat()    {        return (String) getProperty(PropertyIDMap.PID_PRESFORMAT);    }    /**     * <p>Returns the stream's byte count or 0 if the {@link     * DocumentSummaryInformation} does not contain a byte count.</p>     *     * @return The byteCount value     */    public int getByteCount()    {        return getPropertyIntValue(PropertyIDMap.PID_BYTECOUNT);    }    /**     * <p>Returns the stream's line count or 0 if the {@link     * DocumentSummaryInformation} does not contain a line count.</p>     *     * @return The lineCount value     */    public int getLineCount()    {        return getPropertyIntValue(PropertyIDMap.PID_LINECOUNT);    }    /**     * <p>Returns the stream's par count or 0 if the {@link     * DocumentSummaryInformation} does not contain a par count.</p>     *     * @return The parCount value     */    public int getParCount()    {        return getPropertyIntValue(PropertyIDMap.PID_PARCOUNT);    }    /**     * <p>Returns the stream's slide count or 0 if the {@link     * DocumentSummaryInformation} does not contain a slide count.</p>     *     * @return The slideCount value     */    public int getSlideCount()    {        return getPropertyIntValue(PropertyIDMap.PID_SLIDECOUNT);    }    /**     * <p>Returns the stream's note count or 0 if the {@link     * DocumentSummaryInformation} does not contain a note count.</p>     *     * @return The noteCount value     */    public int getNoteCount()    {        return getPropertyIntValue(PropertyIDMap.PID_NOTECOUNT);    }    /**     * <p>Returns the stream's hidden count or 0 if the {@link     * DocumentSummaryInformation} does not contain a hidden     * count.</p>     *     * @return The hiddenCount value     */    public int getHiddenCount()    {        return getPropertyIntValue(PropertyIDMap.PID_HIDDENCOUNT);    }    /**     * <p>Returns the stream's mmclip count or 0 if the {@link     * DocumentSummaryInformation} does not contain a mmclip     * count.</p>     *     * @return The mMClipCount value     */    public int getMMClipCount()    {        return getPropertyIntValue(PropertyIDMap.PID_MMCLIPCOUNT);    }    /**     * <p>Returns <code>true</code> when scaling of the thumbnail is     * desired, <code>false</code> if cropping is desired.</p>     *     * @return The scale value     */    public boolean getScale()    {        return getPropertyBooleanValue(PropertyIDMap.PID_SCALE);    }    /**     * <p>Returns the stream's heading pair (or <code>null</code>)     * <strong>when this method is implemented. Please note that the     * return type is likely to change!</strong>     *     * @return The headingPair value     */    public byte[] getHeadingPair()    {        if (true)            throw new UnsupportedOperationException("FIXME");        return (byte[]) getProperty(PropertyIDMap.PID_HEADINGPAIR);    }    /**     * <p>Returns the stream's doc parts (or <code>null</code>)     * <strong>when this method is implemented. Please note that the     * return type is likely to change!</strong>     *     * @return The docparts value     */    public byte[] getDocparts()    {        if (true)            throw new UnsupportedOperationException("FIXME");        return (byte[]) getProperty(PropertyIDMap.PID_DOCPARTS);    }    /**     * <p>Returns the stream's manager (or <code>null</code>).</p>     *     * @return The manager value     */    public String getManager()    {        return (String) getProperty(PropertyIDMap.PID_MANAGER);    }    /**     * <p>Returns the stream's company (or <code>null</code>).</p>     *     * @return The company value     */    public String getCompany()    {        return (String) getProperty(PropertyIDMap.PID_COMPANY);    }    /**     * <p>Returns <code>true</code> if the custom links are hampered     * by excessive noise, for all applications.</p> <p>     *     * <strong>FIXME:</strong> Explain this some more! I (Rainer)     * don't understand it.</p>     *     * @return The linksDirty value     */    public boolean getLinksDirty()    {        return getPropertyBooleanValue(PropertyIDMap.PID_LINKSDIRTY);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -