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

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

?? pdfname.java

?? iText可以制作中文PDF文件的JAVA源程序最新版下載
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/* * $Id: PdfName.java,v 1.36 2002/11/19 08:33:38 blowagie Exp $ * $Name:  $ * * Copyright 1999, 2000, 2001, 2002 Bruno Lowagie * * The contents of this file are subject to the Mozilla Public License Version 1.1 * (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the License. * * The Original Code is 'iText, a free JAVA-PDF library'. * * The Initial Developer of the Original Code is Bruno Lowagie. Portions created by * the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie. * All Rights Reserved. * Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer * are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved. * * Contributor(s): all the names of the contributors are added in the source code * where applicable. * * Alternatively, the contents of this file may be used under the terms of the * LGPL license (the "GNU LIBRARY GENERAL PUBLIC LICENSE"), in which case the * provisions of LGPL are applicable instead of those above.  If you wish to * allow use of your version of this file only under the terms of the LGPL * License and not to allow others to use your version of this file under * the MPL, indicate your decision by deleting the provisions above and * replace them with the notice and other provisions required by the LGPL. * If you do not delete the provisions above, a recipient may use your version * of this file under either the MPL or the GNU LIBRARY GENERAL PUBLIC LICENSE. * * This library is free software; you can redistribute it and/or modify it * under the terms of the MPL as stated above or under the terms of the GNU * Library General Public License as published by the Free Software Foundation; * either version 2 of the License, or any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more * details. * * If you didn't download this code from the following link, you should check if * you aren't using an obsolete version: * http://www.lowagie.com/iText/ */package com.lowagie.text.pdf;/** * <CODE>PdfName</CODE> is an object that can be used as a name in a PDF-file. * <P> * A name, like a string, is a sequence of characters. It must begin with a slash * followed by a sequence of ASCII characters in the range 32 through 136 except * %, (, ), [, ], &lt;, &gt;, {, }, / and #. Any character except 0x00 may be included * in a name by writing its twocharacter hex code, preceded by #. The maximum number * of characters in a name is 127.<BR> * This object is described in the 'Portable Document Format Reference Manual version 1.3' * section 4.5 (page 39-40). * <P> * * @see		PdfObject * @see		PdfDictionary * @see		BadPdfFormatException */public class PdfName extends PdfObject implements Comparable{        // static membervariables (a variety of standard names used in PDF)        /** This is a static final PdfName */    public static final PdfName A = new PdfName("A");        /** This is a static final PdfName */    public static final PdfName AA = new PdfName("AA");        /** This is a static final PdfName */    public static final PdfName AC = new PdfName("AC");        /** This is a static final PdfName */    public static final PdfName ACROFORM = new PdfName("AcroForm");        /** This is a static final PdfName */    public static final PdfName ACTION = new PdfName("Action");        /** This is a static final PdfName */    public static final PdfName ALTERNATE = new PdfName("Alternate");        /** This is a static final PdfName */    public static final PdfName ANNOT = new PdfName("Annot");        /** This is a static final PdfName */    public static final PdfName ANTIALIAS = new PdfName("AntiAlias");        /** This is a static final PdfName */    public static final PdfName ANNOTS = new PdfName("Annots");        /** This is a static final PdfName */    public static final PdfName AP = new PdfName("AP");        /** This is a static final PdfName */    public static final PdfName AS = new PdfName("AS");        /** This is a static final PdfName */    public static final PdfName ASCII85DECODE = new PdfName("ASCII85Decode");        /** This is a static final PdfName */    public static final PdfName ASCIIHEXDECODE = new PdfName("ASCIIHexDecode");        /** This is a static final PdfName */    public static final PdfName AUTHOR = new PdfName("Author");        /** This is a static final PdfName */    public static final PdfName B = new PdfName("B");        /** This is a static final PdfName */    public static final PdfName BASEFONT = new PdfName("BaseFont");        /** This is a static final PdfName */    public static final PdfName BBOX = new PdfName("BBox");        /** This is a static final PdfName */    public static final PdfName BC = new PdfName("BC");        /** This is a static final PdfName */    public static final PdfName BG = new PdfName("BG");        /** This is a static final PdfName */    public static final PdfName BITSPERCOMPONENT = new PdfName("BitsPerComponent");        /** This is a static final PdfName */    public static final PdfName BITSPERSAMPLE = new PdfName("BitsPerSample");        /** This is a static final PdfName */    public static final PdfName BL = new PdfName("Bl");        /** This is a static final PdfName */    public static final PdfName BLACKIS1 = new PdfName("BlackIs1");        /** This is a static final PdfName */    public static final PdfName BORDER = new PdfName("Border");        /** This is a static final PdfName */    public static final PdfName BOUNDS = new PdfName("Bounds");        /** This is a static final PdfName */    public static final PdfName BS = new PdfName("BS");        /** This is a static final PdfName */    public static final PdfName BTN = new PdfName("Btn");        /** This is a static final PdfName */    public static final PdfName BYTERANGE = new PdfName("ByteRange");        /** This is a static final PdfName */    public static final PdfName C = new PdfName("C");        /** This is a static final PdfName */    public static final PdfName C0 = new PdfName("C0");        /** This is a static final PdfName */    public static final PdfName C1 = new PdfName("C1");        /** This is a static final PdfName */    public static final PdfName CA = new PdfName("CA");        /** This is a static final PdfName */    public static final PdfName CATALOG = new PdfName("Catalog");        /** This is a static final PdfName */    public static final PdfName CCITTFAXDECODE = new PdfName("CCITTFaxDecode");        /** This is a static final PdfName */    public static final PdfName CENTERWINDOW = new PdfName("CenterWindow");        /** This is a static final PdfName */    public static final PdfName CH = new PdfName("Ch");        /** This is a static final PdfName */    public static final PdfName CIRCLE = new PdfName("Circle");        /** This is a static final PdfName */    public static final PdfName CO = new PdfName("CO");        /** This is a static final PdfName */    public static final PdfName COLORS = new PdfName("Colors");        /** This is a static final PdfName */    public static final PdfName COLORSPACE = new PdfName("ColorSpace");        /** This is a static final PdfName */    public static final PdfName COLUMNS = new PdfName("Columns");        /** This is a static final PdfName */    public static final PdfName CONTENT = new PdfName("Content");        /** This is a static final PdfName */    public static final PdfName CONTENTS = new PdfName("Contents");        /** This is a static final PdfName */    public static final PdfName COORDS = new PdfName("Coords");        /** This is a static final PdfName */    public static final PdfName COUNT = new PdfName("Count");        /** This is a static final PdfName of a base 14 type 1 font */    public static final PdfName COURIER = new PdfName("Courier");        /** This is a static final PdfName of a base 14 type 1 font */    public static final PdfName COURIER_BOLD = new PdfName("Courier-Bold");        /** This is a static final PdfName of a base 14 type 1 font */    public static final PdfName COURIER_OBLIQUE = new PdfName("Courier-Oblique");        /** This is a static final PdfName of a base 14 type 1 font */    public static final PdfName COURIER_BOLDOBLIQUE = new PdfName("Courier-BoldOblique");        /** This is a static final PdfName */    public static final PdfName CREATIONDATE = new PdfName("CreationDate");        /** This is a static final PdfName */    public static final PdfName CREATOR = new PdfName("Creator");        /** This is a static final PdfName */    public static final PdfName CROPBOX = new PdfName("CropBox");        /** This is a static final PdfName */    public static final PdfName D = new PdfName("D");        /** This is a static final PdfName */    public static final PdfName DA = new PdfName("DA");        /** This is a static final PdfName */    public static final PdfName DC = new PdfName("DC");        /** This is a static final PdfName */    public static final PdfName DCTDECODE = new PdfName("DCTDecode");        /** This is a static final PdfName */    public static final PdfName DECODE = new PdfName("Decode");        /** This is a static final PdfName */    public static final PdfName DECODEPARMS = new PdfName("DecodeParms");        /** This is a static final PdfName */    public static final PdfName DEST = new PdfName("Dest");        /** This is a static final PdfName */    public static final PdfName DESTS = new PdfName("Dests");        /** This is a static final PdfName */    public static final PdfName DEVICEGRAY = new PdfName("DeviceGray");        /** This is a static final PdfName */    public static final PdfName DEVICERGB = new PdfName("DeviceRGB");        /** This is a static final PdfName */    public static final PdfName DEVICECMYK = new PdfName("DeviceCMYK");        /** This is a static final PdfName */    public static final PdfName DI = new PdfName("Di");    /** This is a static final PdfName */    public static final PdfName DIRECTION = new PdfName("Direction");        /** This is a static final PdfName */    public static final PdfName DM = new PdfName("Dm");        /** This is a static final PdfName */    public static final PdfName DOMAIN = new PdfName("Domain");        /** This is a static final PdfName */    public static final PdfName DP = new PdfName("DP");        /** This is a static final PdfName */    public static final PdfName DR = new PdfName("DR");        /** This is a static final PdfName */    public static final PdfName DS = new PdfName("DS");        /** This is a static final PdfName */    public static final PdfName DUR = new PdfName("Dur");        /** This is a static final PdfName */    public static final PdfName DV = new PdfName("DV");        /** This is a static final PdfName */    public static final PdfName E = new PdfName("E");        /** This is a static final PdfName */    public static final PdfName EARLYCHANGE = new PdfName("EarlyChange");        /** This is a static final PdfName */    public static final PdfName ENCODE = new PdfName("Encode");        /** This is a static final PdfName */    public static final PdfName ENCODEDBYTEALIGN = new PdfName("EncodedByteAlign");        /** This is a static final PdfName */    public static final PdfName ENCODING = new PdfName("Encoding");        /** This is a static final PdfName */    public static final PdfName ENCRYPT = new PdfName("Encrypt");        /** This is a static final PdfName */    public static final PdfName ENDOFBLOCK = new PdfName("EndOfBlock");        /** This is a static final PdfName */    public static final PdfName ENDOFLINE = new PdfName("EndOfLine");        /** This is a static final PdfName */    public static final PdfName EXTEND = new PdfName("Extend");        /** This is a static final PdfName */    public static final PdfName EXTGSTATE = new PdfName("ExtGState");        /** This is a static final PdfName */    public static final PdfName F = new PdfName("F");        /** This is a static final PdfName */    public static final PdfName FDECODEPARMS = new PdfName("FDecodeParms");        /** This is a static final PdfName */    public static final PdfName FF = new PdfName("Ff");        /** This is a static final PdfName */    public static final PdfName FFILTER = new PdfName("FFilter");        /** This is a static final PdfName */    public static final PdfName FIELDS = new PdfName("Fields");        /** This is a static final PdfName */    public static final PdfName FILTER = new PdfName("Filter");        /** This is a static final PdfName */    public static final PdfName FIRST = new PdfName("First");        /** This is a static final PdfName */    public static final PdfName FIRSTCHAR = new PdfName("FirstChar");        /** This is a static final PdfName */    public static final PdfName FIRSTPAGE = new PdfName("FirstPage");        /** This is a static final PdfName */    public static final PdfName FIT = new PdfName("Fit");        /** This is a static final PdfName */    public static final PdfName FITH = new PdfName("FitH");        /** This is a static final PdfName */    public static final PdfName FITV = new PdfName("FitV");    

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品国产综合久久久久| 午夜精品久久久久久久蜜桃app| 国产精品毛片高清在线完整版| 偷拍自拍另类欧美| heyzo一本久久综合| 精品福利二区三区| 婷婷综合在线观看| 在线观看亚洲a| 国产精品区一区二区三区| 久久9热精品视频| 欧美欧美欧美欧美首页| 一区二区三区欧美日| 成人不卡免费av| 国产性天天综合网| 久久精品噜噜噜成人av农村| 欧美精品乱码久久久久久按摩 | 成人免费观看av| 精品国产乱子伦一区| 日韩在线a电影| 欧洲精品一区二区| 亚洲精品福利视频网站| 99re热这里只有精品免费视频| 国产日本亚洲高清| 黑人巨大精品欧美一区| 精品国产1区二区| 九九视频精品免费| 日韩午夜电影av| 日本亚洲三级在线| 欧美一二三区在线观看| 欧美a级理论片| 欧美一区二区福利视频| 日韩二区三区四区| 日韩三级免费观看| 国产一区二区三区蝌蚪| 久久久美女艺术照精彩视频福利播放| 裸体一区二区三区| 26uuu精品一区二区| 国产成人激情av| 国产精品久久久久久亚洲伦| 99久久99久久久精品齐齐| 国产精品国产三级国产三级人妇 | 亚洲一区二区三区自拍| 欧美视频一区二区三区四区| 午夜激情综合网| 欧美一区二区三区四区五区| 久久国产人妖系列| 国产性色一区二区| 色妹子一区二区| 日韩精品国产精品| 久久久久国产成人精品亚洲午夜| 国产99久久久国产精品免费看| 欧美韩国日本不卡| 精品视频1区2区3区| 九色综合国产一区二区三区| 中文字幕乱码久久午夜不卡 | 91香蕉视频mp4| 夜夜夜精品看看| 欧美一区二区高清| 成人黄色网址在线观看| 亚洲成年人影院| 久久久久国产免费免费| 在线一区二区三区| 精东粉嫩av免费一区二区三区| 国产偷国产偷精品高清尤物 | 天堂一区二区在线免费观看| 久久久综合精品| 欧美在线免费观看视频| 加勒比av一区二区| 一区二区三区四区亚洲| 日韩女优制服丝袜电影| 91日韩一区二区三区| 久草这里只有精品视频| 亚洲欧洲三级电影| 日韩精品专区在线影院观看| 色伊人久久综合中文字幕| 精品亚洲porn| 亚洲aaa精品| 国产精品久久久久影院| 欧美成人性福生活免费看| 91视视频在线观看入口直接观看www| 亚洲第一激情av| 成人欧美一区二区三区黑人麻豆| 欧美一区二区在线播放| 色婷婷亚洲精品| 成人午夜激情视频| 精品系列免费在线观看| 亚洲电影你懂得| 国产精品久久久久久户外露出| 日韩欧美高清一区| 欧美制服丝袜第一页| eeuss鲁片一区二区三区在线观看| 日本亚洲免费观看| 香蕉成人啪国产精品视频综合网 | 青青草国产精品97视觉盛宴| ●精品国产综合乱码久久久久| 日韩美女主播在线视频一区二区三区 | 久久综合色天天久久综合图片| 欧美日韩精品专区| 91久久人澡人人添人人爽欧美 | 日韩国产欧美视频| 亚洲一区二区三区精品在线| 国产精品久久久久久久第一福利| 久久久噜噜噜久噜久久综合| 日韩欧美一级精品久久| 欧美老肥妇做.爰bbww| 欧美性色综合网| 91丨porny丨国产入口| 99r精品视频| 97se亚洲国产综合在线| 成人va在线观看| 成人av免费在线播放| 成熟亚洲日本毛茸茸凸凹| 国产乱码精品1区2区3区| 国产乱码字幕精品高清av | 色婷婷亚洲一区二区三区| 99久久婷婷国产| 99精品热视频| 91视视频在线观看入口直接观看www | 一区二区三区不卡视频在线观看 | 国产精品二三区| 亚洲人被黑人高潮完整版| 亚洲另类一区二区| 亚洲综合色噜噜狠狠| 亚洲午夜激情av| 日本午夜精品一区二区三区电影| 美国十次综合导航| 国产一区二区成人久久免费影院| 国产一区二区三区在线看麻豆| 国产精品一区二区在线播放 | 亚洲日本乱码在线观看| 一区二区三区 在线观看视频| 亚洲国产视频一区二区| 久久精品国产77777蜜臀| 国精品**一区二区三区在线蜜桃| 成人一区在线观看| 色av综合在线| 日韩三级在线免费观看| 日本一区二区三区高清不卡| 有码一区二区三区| 首页国产欧美久久| 国产资源在线一区| 色素色在线综合| 91精品国产综合久久国产大片| 精品福利视频一区二区三区| 中文字幕亚洲电影| 日日摸夜夜添夜夜添精品视频 | 欧美亚洲一区二区在线| 欧美一二三区在线| 国产精品嫩草影院com| 亚洲一区二区在线观看视频| 免费成人深夜小野草| 高潮精品一区videoshd| 欧美久久久久久蜜桃| 国产喂奶挤奶一区二区三区| 亚洲一二三级电影| 粉嫩嫩av羞羞动漫久久久| 欧美无砖专区一中文字| 久久精品夜夜夜夜久久| 亚洲一区二区欧美| 国产91综合一区在线观看| 欧美日韩一区二区三区四区| 国产欧美日韩麻豆91| 五月天一区二区| 97精品国产露脸对白| 精品国产1区二区| 亚洲成人av福利| 色哟哟一区二区三区| 久久久精品天堂| 青青草伊人久久| 欧美日韩一区视频| 综合久久一区二区三区| 国产老肥熟一区二区三区| 欧美日韩精品专区| 亚洲摸摸操操av| eeuss影院一区二区三区| 久久久久国色av免费看影院| 久久国内精品视频| 欧美久久久久久久久| 亚洲综合图片区| 91视频在线观看免费| 中文字幕精品在线不卡| 狠狠色丁香婷综合久久| 欧美一区二区三区小说| 午夜国产精品一区| 欧洲一区在线观看| 亚洲人123区| 色综合色狠狠综合色| 国产精品三级视频| 国产成人综合自拍| 久久久久久久久久看片| 久久er99热精品一区二区| 日韩精品一区二区三区老鸭窝| 日韩黄色免费电影| 7777精品伊人久久久大香线蕉完整版 | 6080国产精品一区二区| 亚洲观看高清完整版在线观看 | 色综合天天综合色综合av| 国产精品女同一区二区三区| 粉嫩在线一区二区三区视频| 国产无一区二区|