?? pdfname.java
字號:
/* * $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 * %, (, ), [, ], <, >, {, }, / 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 + -