亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? documentsummaryinformation.java

?? java 報表 to office文檔: 本包由java語言開發
?? JAVA
字號:
/* ====================================================================   Copyright 2002-2004   Apache Software Foundation   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.apache.poi.hpsf;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import org.apache.poi.hpsf.wellknown.PropertyIDMap;/** * <p>Convenience class representing a DocumentSummary Information stream in a * Microsoft Office document.</p> * * @author Rainer Klute <a * href="mailto:klute@rainer-klute.de">&lt;klute@rainer-klute.de&gt;</a> * @author Drew Varner (Drew.Varner closeTo sc.edu) * @author robert_flaherty@hyperion.com * @see SummaryInformation * @version $Id: DocumentSummaryInformation.java,v 1.14 2004/08/15 15:20:07 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 dirty.</p> <p>     *     * @return The linksDirty value     */    public boolean getLinksDirty()    {        return getPropertyBooleanValue(PropertyIDMap.PID_LINKSDIRTY);    }    /**     * <p>Gets the custom properties as a map from the property name to     * value.</p>     *      * @return The custom properties if any exist, <code>null</code> otherwise.     * @since 2003-10-22     */    public Map getCustomProperties()    {        Map nameToValue = null;        if (getSectionCount() >= 2)        {            final Section section = (Section) getSections().get(1);            final Map pidToName =                       (Map) section.getProperty(PropertyIDMap.PID_DICTIONARY);            if (pidToName != null)            {                nameToValue = new HashMap(pidToName.size());                for (Iterator i = pidToName.entrySet().iterator(); i.hasNext();)                {                    final Map.Entry e = (Map.Entry) i.next();                    final long pid = ((Number) e.getKey()).longValue();                    nameToValue.put(e.getValue(), section.getProperty(pid));                }            }        }        return nameToValue;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线综合亚洲欧美在线视频| 国产精品白丝jk白祙喷水网站| 91高清视频免费看| 伊人婷婷欧美激情| 欧美日韩小视频| 久久精品99国产精品日本| 91精品国产色综合久久不卡电影| 欧美aⅴ一区二区三区视频| 日韩一级大片在线| 国产高清在线精品| 《视频一区视频二区| 在线观看成人免费视频| 视频一区欧美日韩| 久久久久久免费网| 91色视频在线| 免费观看在线色综合| 久久精品视频一区二区| 日本乱人伦一区| 热久久国产精品| 亚洲国产精品高清| 欧洲精品一区二区三区在线观看| 青青国产91久久久久久| 国产精品天干天干在观线| 欧美在线不卡视频| 国产乱子轮精品视频| 亚洲人成人一区二区在线观看 | 美女视频黄a大片欧美| 国产亚洲成aⅴ人片在线观看| 91麻豆免费视频| 麻豆国产精品视频| 亚洲毛片av在线| 日韩视频一区二区| 在线视频国产一区| 国产一区二区三区蝌蚪| 亚洲精品欧美激情| 久久这里都是精品| 欧美日韩美少妇| av激情亚洲男人天堂| 免费观看日韩av| 一区二区欧美国产| 国产欧美日本一区视频| 制服丝袜亚洲精品中文字幕| 成人激情视频网站| 黄色精品一二区| 亚洲福利视频三区| 中文字幕亚洲视频| 久久婷婷一区二区三区| 欧美日韩国产影片| 一本到不卡精品视频在线观看| 国产一区在线观看视频| 水蜜桃久久夜色精品一区的特点 | 亚洲精品国久久99热| 亚洲精品一线二线三线无人区| 欧美综合欧美视频| 99国产麻豆精品| 国产传媒久久文化传媒| 麻豆一区二区三区| 五月婷婷另类国产| 夜夜嗨av一区二区三区四季av| 欧美激情在线免费观看| 国产亚洲制服色| 欧美白人最猛性xxxxx69交| 欧美精品黑人性xxxx| 欧美亚洲一区二区在线| 色www精品视频在线观看| 成人国产精品免费观看视频| 国产精品影视天天线| 国产精品一区二区视频| 精品一区二区三区免费观看| 蜜臀av亚洲一区中文字幕| 婷婷综合五月天| 天天色天天操综合| 日韩专区一卡二卡| 日韩激情av在线| 水野朝阳av一区二区三区| 国产精品国产馆在线真实露脸| hitomi一区二区三区精品| 久久精品男人的天堂| 欧美sm美女调教| 91精品国产色综合久久不卡电影 | 亚洲精品国产第一综合99久久| 欧美国产成人精品| 国产精品美女久久久久久久久久久| 久久久欧美精品sm网站| 久久久不卡网国产精品一区| 欧美激情中文字幕一区二区| 国产精品大尺度| 亚洲精品国产品国语在线app| 一区二区三区美女| 日韩精品一卡二卡三卡四卡无卡| 日韩av高清在线观看| 久久99精品国产.久久久久久| 国内精品久久久久影院薰衣草 | 精品精品欲导航| 精品国产凹凸成av人网站| 久久九九国产精品| 亚洲女人小视频在线观看| 亚洲午夜日本在线观看| 蜜桃传媒麻豆第一区在线观看| 精品亚洲成a人| 91在线精品秘密一区二区| 精品视频在线看| 精品日韩欧美一区二区| 中文字幕在线一区| 婷婷一区二区三区| 国产精品99久久久久久久vr| 91亚洲精华国产精华精华液| 欧美精品99久久久**| 国产三区在线成人av| 亚洲欧美日韩国产综合| 免费在线观看不卡| 97se亚洲国产综合自在线| 日韩一区二区三区在线视频| 国产精品久久久久桃色tv| 午夜激情久久久| 国产91精品精华液一区二区三区| 日本电影欧美片| 欧美精品一区二区三| 亚洲免费观看在线观看| 美腿丝袜亚洲三区| 色中色一区二区| 久久日韩粉嫩一区二区三区| 亚洲激情网站免费观看| 国产福利一区二区三区在线视频| 在线观看不卡一区| 国产精品午夜春色av| 男人的j进女人的j一区| 色哟哟一区二区三区| 久久精品一区二区| 日韩国产欧美在线观看| 91农村精品一区二区在线| 精品国免费一区二区三区| 一区二区三区蜜桃| 不卡的av在线| 久久免费偷拍视频| 免费在线观看日韩欧美| 欧美中文字幕一区二区三区亚洲| 国产色产综合产在线视频 | 精品一区二区久久久| 欧美日韩在线免费视频| 国产精品久久久久久亚洲伦| 看片网站欧美日韩| 欧美肥胖老妇做爰| 亚洲成a人v欧美综合天堂| 不卡在线观看av| 久久久久久久久久久久久夜| 蜜乳av一区二区三区| 欧美三级韩国三级日本一级| 最新国产成人在线观看| 国产成人精品影视| 精品国产精品一区二区夜夜嗨| 五月婷婷综合在线| 欧美天天综合网| 亚洲精品国产成人久久av盗摄| bt7086福利一区国产| 精品国产成人系列| 久久99国产精品免费| 日韩欧美成人激情| 免费不卡在线观看| 欧美一区日韩一区| 免费观看一级特黄欧美大片| 51精品秘密在线观看| 丝袜亚洲另类丝袜在线| 欧美日韩电影在线| 日韩国产在线一| 欧美一区二区三区视频免费播放| 无吗不卡中文字幕| 欧美日韩不卡视频| 亚洲成va人在线观看| 欧美精品自拍偷拍动漫精品| 婷婷综合五月天| 日韩久久久久久| 国产精品夜夜嗨| 国产精品久久久久久久久快鸭| 丁香婷婷深情五月亚洲| 亚洲丝袜自拍清纯另类| 色综合天天综合狠狠| 亚洲一区二区三区视频在线播放| 欧美亚洲自拍偷拍| 亚洲成av人片一区二区梦乃 | 91高清视频免费看| 亚洲丰满少妇videoshd| 欧美日韩国产天堂| 极品少妇xxxx偷拍精品少妇| 久久久久国产一区二区三区四区| 国产成人午夜视频| 亚洲欧美另类久久久精品2019| 欧美自拍丝袜亚洲| 久久精品免费看| 中文字幕一区二区视频| 在线观看欧美精品| 男人的天堂久久精品| 国产亚洲成av人在线观看导航 | 亚洲国产成人av| 欧美成人aa大片| 成人国产精品免费| 午夜精品国产更新| 国产欧美一区二区精品秋霞影院 | 精品人在线二区三区| 成人av网站大全|