source: branches/0.17.x/abcl/src/org/armedbear/lisp/Keyword.java

Last change on this file was 11700, checked in by ehuelsmann, 16 years ago

Add OpenBSD and NetBSD platform detection support.

Patch by: Julian Fondren (ayrnieu at gmail dot com)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.8 KB
Line 
1/*
2 * Keyword.java
3 *
4 * Copyright (C) 2002-2007 Peter Graves
5 * $Id: Keyword.java 11700 2009-03-06 20:21:01Z ehuelsmann $
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 * As a special exception, the copyright holders of this library give you
22 * permission to link this library with independent modules to produce an
23 * executable, regardless of the license terms of these independent
24 * modules, and to copy and distribute the resulting executable under
25 * terms of your choice, provided that you also meet, for each linked
26 * independent module, the terms and conditions of the license of that
27 * module.  An independent module is a module which is not derived from
28 * or based on this library.  If you modify this library, you may extend
29 * this exception to your version of the library, but you are not
30 * obligated to do so.  If you do not wish to do so, delete this
31 * exception statement from your version.
32 */
33
34package org.armedbear.lisp;
35
36public final class Keyword extends Lisp
37{
38    public static final Symbol
39        ABCL                = internKeyword("ABCL"),
40        ABORT               = internKeyword("ABORT"),
41        ABSOLUTE            = internKeyword("ABSOLUTE"),
42        ADJUSTABLE          = internKeyword("ADJUSTABLE"),
43        ALLOW_OTHER_KEYS    = internKeyword("ALLOW-OTHER-KEYS"),
44        ANSI_CL             = internKeyword("ANSI-CL"),
45        APPEND              = internKeyword("APPEND"),
46        ARMEDBEAR           = internKeyword("ARMEDBEAR"),
47        BACK                = internKeyword("BACK"),
48        BOOLEAN             = internKeyword("BOOLEAN"),
49        CAPITALIZE          = internKeyword("CAPITALIZE"),
50        CAPITALIZE_FIRST    = internKeyword("CAPITALIZE-FIRST"),
51        CASE                = internKeyword("CASE"),
52        CAUSE               = internKeyword("CAUSE"),
53        CHAR                = internKeyword("CHAR"),
54        COMMON              = internKeyword("COMMON"),
55        COMMON_LISP         = internKeyword("COMMON-LISP"),
56        COMPILE_TOPLEVEL    = internKeyword("COMPILE-TOPLEVEL"),
57        COUNT_ONLY          = internKeyword("COUNT-ONLY"),
58        CREATE              = internKeyword("CREATE"),
59        DARWIN              = internKeyword("DARWIN"),
60        DATUM               = internKeyword("DATUM"),
61        DECLARED            = internKeyword("DECLARED"),
62        DEFAULT             = internKeyword("DEFAULT"),
63        DEFAULTS            = internKeyword("DEFAULTS"),
64        DEVICE              = internKeyword("DEVICE"),
65        DIRECTION           = internKeyword("DIRECTION"),
66        DIRECTORY           = internKeyword("DIRECTORY"),
67        DIRECT_SUPERCLASSES = internKeyword("DIRECT-SUPERCLASSES"),
68        DOWNCASE            = internKeyword("DOWNCASE"),
69        ELEMENT_TYPE        = internKeyword("ELEMENT-TYPE"),
70        END                 = internKeyword("END"),
71        ERROR               = internKeyword("ERROR"),
72        EXECUTE             = internKeyword("EXECUTE"),
73        EXPECTED_TYPE       = internKeyword("EXPECTED-TYPE"),
74        EXTERNAL            = internKeyword("EXTERNAL"),
75        EXTERNAL_FORMAT     = internKeyword("EXTERNAL-FORMAT"),
76        FILL_POINTER        = internKeyword("FILL-POINTER"),
77        FORMAT_ARGUMENTS    = internKeyword("FORMAT-ARGUMENTS"),
78        FORMAT_CONTROL      = internKeyword("FORMAT-CONTROL"),
79        FROM_END            = internKeyword("FROM-END"),
80        FREEBSD             = internKeyword("FREEBSD"),
81        HOST                = internKeyword("HOST"),
82        IF_DOES_NOT_EXIST   = internKeyword("IF-DOES-NOT-EXIST"),
83        IF_EXISTS           = internKeyword("IF-EXISTS"),
84        INHERITED           = internKeyword("INHERITED"),
85        INITIAL_CONTENTS    = internKeyword("INITIAL-CONTENTS"),
86        INITIAL_ELEMENT     = internKeyword("INITIAL-ELEMENT"),
87        INPUT               = internKeyword("INPUT"),
88        INSTANCE            = internKeyword("INSTANCE"),
89        INT                 = internKeyword("INT"),
90        INTERNAL            = internKeyword("INTERNAL"),
91        INVERT              = internKeyword("INVERT"),
92        IO                  = internKeyword("IO"),
93        J                   = internKeyword("J"),
94        JAVA_1_4            = internKeyword("JAVA-1.4"),
95        JAVA_1_5            = internKeyword("JAVA-1.5"),
96        JAVA_1_6            = internKeyword("JAVA-1.6"),
97        JAVA_1_7            = internKeyword("JAVA-1.7"),
98        KEY                 = internKeyword("KEY"),
99        LINUX               = internKeyword("LINUX"),
100        LOAD_TOPLEVEL       = internKeyword("LOAD-TOPLEVEL"),
101        LOCAL               = internKeyword("LOCAL"),
102        LONG                = internKeyword("LONG"),
103        NAME                = internKeyword("NAME"),
104        NETBSD              = internKeyword("NETBSD"),
105        NEW_VERSION         = internKeyword("NEW"),
106        NEWEST              = internKeyword("NEWEST"),
107        NICKNAMES           = internKeyword("NICKNAMES"),
108        NONE                = internKeyword("NONE"),
109        NO_ERROR            = internKeyword("NO-ERROR"),
110        OBJECT              = internKeyword("OBJECT"),
111        OPENBSD             = internKeyword("OPENBSD"),
112        OPERANDS            = internKeyword("OPERANDS"),
113        OPERATION           = internKeyword("OPERATION"),
114        OUTPUT              = internKeyword("OUTPUT"),
115        OVERFLOW            = internKeyword("OVERFLOW"),
116        OVERWRITE           = internKeyword("OVERWRITE"),
117        PACKAGE             = internKeyword("PACKAGE"),
118        PATHNAME            = internKeyword("PATHNAME"),
119        PROBE               = internKeyword("PROBE"),
120        PUBLIC              = internKeyword("PUBLIC"),
121        PRESERVE            = internKeyword("PRESERVE"),
122        REF                 = internKeyword("REF"),
123        RELATIVE            = internKeyword("RELATIVE"),
124        RENAME              = internKeyword("RENAME"),
125        RENAME_AND_DELETE   = internKeyword("RENAME-AND-DELETE"),
126        SIZE                = internKeyword("SIZE"),
127        START               = internKeyword("START"),
128        STATUS              = internKeyword("STATUS"),
129        STREAM              = internKeyword("STREAM"),
130        SUNOS               = internKeyword("SUNOS"),
131        SUPERSEDE           = internKeyword("SUPERSEDE"),
132        TEST                = internKeyword("TEST"),
133        TEST_NOT            = internKeyword("TEST-NOT"),
134        TIME                = internKeyword("TIME"),
135        TOP_LEVEL           = internKeyword("TOP-LEVEL"),
136        TRAPS               = internKeyword("TRAPS"),
137        TYPE                = internKeyword("TYPE"),
138        UNDERFLOW           = internKeyword("UNDERFLOW"),
139        UNIX                = internKeyword("UNIX"),
140        UNSPECIFIC          = internKeyword("UNSPECIFIC"),
141        UP                  = internKeyword("UP"),
142        UPCASE              = internKeyword("UPCASE"),
143        USE                 = internKeyword("USE"),
144        VERSION             = internKeyword("VERSION"),
145        WILD                = internKeyword("WILD"),
146        WILD_INFERIORS      = internKeyword("WILD-INFERIORS"),
147        WINDOWS             = internKeyword("WINDOWS"),
148        X86                 = internKeyword("X86"),
149        X86_64              = internKeyword("X86-64"),
150        CDR6                = internKeyword("CDR6");
151}
Note: See TracBrowser for help on using the repository browser.