亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
日本sm残虐另类| 麻豆国产欧美一区二区三区| 午夜亚洲国产au精品一区二区| 激情综合一区二区三区| 99久久伊人网影院| 精品少妇一区二区三区免费观看 | 久久精品一区二区三区不卡牛牛| 成人欧美一区二区三区小说| 青青草一区二区三区| 91在线码无精品| 久久久亚洲高清| 日本亚洲三级在线| 欧美图片一区二区三区| 日本一区二区久久| 久草这里只有精品视频| 欧美精品一二三| 亚洲欧美另类小说| 成人爽a毛片一区二区免费| 在线成人免费视频| 亚洲二区在线观看| 一本色道a无线码一区v| 国产精品超碰97尤物18| 国产精品一区二区三区网站| 欧美日韩国产系列| 亚洲综合网站在线观看| 99精品久久只有精品| 久久久久久久国产精品影院| 另类欧美日韩国产在线| 91麻豆精品91久久久久同性| 亚洲一区二区三区视频在线播放 | 国产精品综合av一区二区国产馆| 欧美久久婷婷综合色| 亚洲国产精品自拍| 欧美在线一区二区| 亚洲高清一区二区三区| 欧美亚洲国产bt| 亚洲小少妇裸体bbw| 在线免费精品视频| 亚洲成va人在线观看| 精品视频在线免费| 日韩综合一区二区| 91精品国产入口| 蜜臀99久久精品久久久久久软件| 欧美日韩精品一区二区三区四区| 亚洲精品亚洲人成人网| 欧美三区在线视频| 偷拍日韩校园综合在线| 欧美一区欧美二区| 经典三级视频一区| 国产欧美视频一区二区三区| 波多野结衣中文一区| 亚洲精品免费看| 欧美日韩一区在线观看| 日韩高清一级片| 欧美一区二区视频观看视频| 亚洲成人av资源| 制服丝袜av成人在线看| 国产在线麻豆精品观看| 国产精品久久久久久久浪潮网站| 色综合久久88色综合天天免费| 国产精品欧美久久久久无广告| a在线欧美一区| 亚洲美女在线一区| 欧美一区二区日韩| 国产夫妻精品视频| 一区二区免费在线播放| 欧美精品视频www在线观看| 久久国产视频网| 国产精品久久久久久久久动漫 | 国产91精品在线观看| 亚洲精品高清视频在线观看| 日韩亚洲欧美在线| 91丨porny丨在线| 丝袜国产日韩另类美女| 久久综合五月天婷婷伊人| aaa欧美大片| 亚洲h精品动漫在线观看| 久久这里只有精品首页| 一本大道av伊人久久综合| 天堂在线一区二区| 久久九九久久九九| 欧美三级韩国三级日本三斤| 国产黄色精品视频| 视频一区视频二区在线观看| 欧美国产精品v| 色噜噜狠狠一区二区三区果冻| 九九在线精品视频| 亚洲成人1区2区| 亚洲视频免费观看| 久久久久国产精品厨房| 51久久夜色精品国产麻豆| 成人av综合在线| 日韩影视精彩在线| 亚洲激情图片一区| 久久精品视频免费| 日韩欧美国产一二三区| 一本久道中文字幕精品亚洲嫩| 国产尤物一区二区在线| 视频在线观看国产精品| 亚洲精选一二三| 国产精品美女一区二区| 久久只精品国产| 日韩三级av在线播放| 欧美优质美女网站| 91免费国产在线| 国产成人在线网站| 久久国产成人午夜av影院| 首页亚洲欧美制服丝腿| 午夜激情综合网| 国产精品午夜电影| 国产农村妇女精品| 亚洲国产精品黑人久久久| 国产三级精品视频| 久久久久国产精品麻豆| 精品国产伦一区二区三区观看方式 | 日韩一级完整毛片| 欧美日韩国产高清一区二区三区| 91欧美一区二区| 日本高清不卡一区| 欧美在线观看一区二区| 欧美专区日韩专区| 欧美日韩一区二区三区在线看| 色网站国产精品| 欧美伊人久久大香线蕉综合69| 色婷婷av久久久久久久| 色综合天天综合狠狠| 91丨九色丨黑人外教| 91麻豆免费在线观看| 大胆亚洲人体视频| 国产成人午夜精品5599| 成人网男人的天堂| 99久久精品国产观看| 91亚洲资源网| 91一区在线观看| 欧美亚洲综合色| 欧美一区二区三区不卡| 精品国产伦一区二区三区观看体验 | 欧美影视一区在线| 欧美三级日韩三级国产三级| 色婷婷一区二区三区四区| 欧美性色欧美a在线播放| 欧美精品自拍偷拍| 久久婷婷国产综合国色天香| 欧美国产精品中文字幕| 一区二区三区中文字幕在线观看| 天堂在线亚洲视频| 国产激情视频一区二区在线观看| 99精品桃花视频在线观看| 欧美日韩午夜影院| 2021中文字幕一区亚洲| 一区二区在线免费| 精品一区二区三区av| www.日本不卡| 欧美精品 国产精品| 久久久不卡影院| 亚洲综合区在线| 日韩激情av在线| 国产精品一区专区| 欧美色爱综合网| 国产女主播在线一区二区| 亚洲欧美日韩一区二区 | 国产电影一区二区三区| 日本高清免费不卡视频| 精品国产一区二区三区久久影院| 中文字幕日韩一区| 精品一区二区三区在线观看国产| 成人视屏免费看| 91精品国产一区二区三区蜜臀 | 国产人成亚洲第一网站在线播放| 一区在线中文字幕| 奇米影视7777精品一区二区| 国产成人精品亚洲日本在线桃色| 欧美日韩国产综合一区二区| 日本一二三不卡| 美女视频黄a大片欧美| 色偷偷久久人人79超碰人人澡| 精品日韩一区二区三区 | 色综合天天视频在线观看 | 欧美aaa在线| 色94色欧美sute亚洲线路二| 精品久久久久一区| 天天操天天色综合| 97久久精品人人澡人人爽| 2021国产精品久久精品| 日本成人在线电影网| 色呦呦国产精品| 中文av一区二区| 国产成人av电影在线播放| 日韩精品一区二区三区四区视频| 性做久久久久久免费观看| 色综合中文字幕| 成人欧美一区二区三区在线播放| 国产成人免费xxxxxxxx| 日韩美女视频一区二区在线观看| 偷窥少妇高潮呻吟av久久免费| 91在线视频播放| 亚洲欧美激情插| 91啪在线观看| 亚洲最大成人综合| 色噜噜夜夜夜综合网|