001/* MediaName.java -- 002 Copyright (C) 2005 Free Software Foundation, Inc. 003 004This file is part of GNU Classpath. 005 006GNU Classpath is free software; you can redistribute it and/or modify 007it under the terms of the GNU General Public License as published by 008the Free Software Foundation; either version 2, or (at your option) 009any later version. 010 011GNU Classpath is distributed in the hope that it will be useful, but 012WITHOUT ANY WARRANTY; without even the implied warranty of 013MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 014General Public License for more details. 015 016You should have received a copy of the GNU General Public License 017along with GNU Classpath; see the file COPYING. If not, write to the 018Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 01902110-1301 USA. 020 021Linking this library statically or dynamically with other modules is 022making a combined work based on this library. Thus, the terms and 023conditions of the GNU General Public License cover the whole 024combination. 025 026As a special exception, the copyright holders of this library give you 027permission to link this library with independent modules to produce an 028executable, regardless of the license terms of these independent 029modules, and to copy and distribute the resulting executable under 030terms of your choice, provided that you also meet, for each linked 031independent module, the terms and conditions of the license of that 032module. An independent module is a module which is not derived from 033or based on this library. If you modify this library, you may extend 034this exception to your version of the library, but you are not 035obligated to do so. If you do not wish to do so, delete this 036exception statement from your version. */ 037 038package javax.print.attribute.standard; 039 040import javax.print.attribute.EnumSyntax; 041 042/** 043 * <code>MediaName</code> is a subclass of the <code>Media</code> printing 044 * attribute and provides selection of media to be used by the means of 045 * defined names. The class pre-defines commonly available media names. 046 * This media type enumeration may be used in alternative to 047 * MediaSizeName/MediaTray. 048 * <p> 049 * <b>IPP Compatibility:</b> MediaName is not an IPP 1.1 attribute on its own. 050 * It provides parts of the <code>media</code> attribute type values. 051 * </p> 052 * 053 * @author Sven de Marothy 054 * @author Wolfgang Baer (WBaer@gmx.de) 055 */ 056public class MediaName extends Media 057{ 058 private static final long serialVersionUID = 4653117714524155448L; 059 060 /** 061 * The North American letter white medium. 062 */ 063 public static final MediaName NA_LETTER_WHITE = new MediaName(0); 064 065 /** 066 * The North American letter transparent medium. 067 */ 068 public static final MediaName NA_LETTER_TRANSPARENT = new MediaName(1); 069 070 /** 071 * The ISO A4 white medium. 072 */ 073 public static final MediaName ISO_A4_WHITE = new MediaName(2); 074 075 /** 076 * The ISO A4 transparent medium. 077 */ 078 public static final MediaName ISO_A4_TRANSPARENT = new MediaName(3); 079 080 private static final String[] stringTable = { "na-letter-white", 081 "na-letter-transparent", 082 "iso-a4-white", 083 "iso-a4-transparent" }; 084 085 private static final MediaName[] enumValueTable = { NA_LETTER_WHITE, 086 NA_LETTER_TRANSPARENT, 087 ISO_A4_WHITE, 088 ISO_A4_TRANSPARENT }; 089 090 /** 091 * Creates a <code>MediaName</code> object. 092 * 093 * @param i the enum value. 094 */ 095 protected MediaName(int i) 096 { 097 super( i ); 098 } 099 100 /** 101 * Returns a table with the enumeration values represented as strings 102 * for this object. 103 * 104 * @return The enumeration values as strings. 105 */ 106 protected String[] getStringTable() 107 { 108 return stringTable; 109 } 110 111 /** 112 * Returns a table with the enumeration values for this object. 113 * 114 * @return The enumeration values. 115 */ 116 protected EnumSyntax[] getEnumValueTable() 117 { 118 return enumValueTable; 119 } 120} 121