Source Code Cross Referenced for Constants.java in  » J2EE » panther » org » lateralnz » common » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » panther » org.lateralnz.common.util 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* ====================================================================
002:         * The LateralNZ Software License, Version 1.0
003:         *
004:         * Copyright (c) 2003 LateralNZ.  All rights reserved.
005:         *
006:         * Redistribution and use in source and binary forms, with or without
007:         * modification, are permitted provided that the following conditions
008:         * are met:
009:         *
010:         * 1. Redistributions of source code must retain the above copyright
011:         *    notice, this list of conditions and the following disclaimer.
012:         *
013:         * 2. Redistributions in binary form must reproduce the above copyright
014:         *    notice, this list of conditions and the following disclaimer in
015:         *    the documentation and/or other materials provided with the
016:         *    distribution.
017:         *
018:         * 3. The end-user documentation included with the redistribution,
019:         *    if any, must include the following acknowledgment:
020:         *       "This product includes software developed by 
021:         *        LateralNZ (http://www.lateralnz.org/) and other third parties."
022:         *    Alternately, this acknowledgment may appear in the software itself,
023:         *    if and wherever such third-party acknowledgments normally appear.
024:         *
025:         * 4. The names "LateralNZ" must not be used to endorse or promote 
026:         *    products derived from this software without prior written 
027:         *    permission. For written permission, please 
028:         *    contact oss@lateralnz.org.
029:         *
030:         * 5. Products derived from this software may not be called "Panther", 
031:         *    or "Lateral" or "LateralNZ", nor may "PANTHER" or "LATERAL" or 
032:         *    "LATERALNZ" appear in their name, without prior written 
033:         *    permission of LateralNZ.
034:         *
035:         * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
036:         * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
037:         * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
038:         * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
039:         * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
040:         * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
041:         * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
042:         * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
043:         * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
044:         * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
045:         * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
046:         * SUCH DAMAGE.
047:         * ====================================================================
048:         *
049:         * This software consists of voluntary contributions made by many
050:         * individuals on behalf of LateralNZ.  For more
051:         * information on Lateral, please see http://www.lateralnz.com/ or
052:         * http://www.lateralnz.org
053:         *
054:         */
055:        package org.lateralnz.common.util;
056:
057:        /**
058:         * common strings used by a number of classes
059:         *
060:         * @author J R Briggs
061:         */
062:        public interface Constants {
063:            public static final String AMPERSAND = "&";
064:            public static final String AND = "and";
065:            public static final String AT = "@";
066:            public static final String ASTERISK = "*";
067:            public static final String BACK_SLASH = "\\";
068:            public static final String COLON = ":";
069:            public static final String COMMA = ",";
070:            public static final String DASH = "-";
071:            public static final String DOLLAR = "$";
072:            public static final String DOT = ".";
073:            public static final String DOT_CLASS = ".class";
074:            public static final String DOT_JAVA = ".java";
075:            public static final String EMPTY = "";
076:            public static final String EQUALS = "=";
077:            public static final String FALSE = "false";
078:            public static final String FILE_SEPARATOR = System
079:                    .getProperty("file.separator");
080:            public static final String FORWARD_SLASH = "/";
081:            public static final String FULLSTOP = DOT;
082:            public static final String HASH = "#";
083:            public static final String HAT = "^";
084:            public static final String LEFT_BRACE = "{";
085:            public static final String LEFT_BRACKET = "(";
086:            public static final String LEFT_CHEV = "<";
087:            public static final String N = "n";
088:            public static final String NEWLINE = "\n";
089:            public static final String NO = "no";
090:            public static final String NULL_STRING = null;
091:            public static final String OFF = "off";
092:            public static final String ON = "on";
093:            public static final String PATH_SEPARATOR = System
094:                    .getProperty("path.separator");
095:            public static final String PERCENT = "%";
096:            public static final String PIPE = "|";
097:            public static final String PLUS = "+";
098:            public static final String QUESTION_MARK = "?";
099:            public static final String QUOTE = "\"";
100:            public static final String RETURN = "\r";
101:            public static final String RIGHT_BRACE = "}";
102:            public static final String RIGHT_BRACKET = ")";
103:            public static final String RIGHT_CHEV = ">";
104:            public static final String SEMICOLON = ";";
105:            public static final String SINGLE_QUOTE = "'";
106:            public static final String SPACE = " ";
107:            public static final String SQ_LEFT_BRACKET = "[";
108:            public static final String SQ_RIGHT_BRACKET = "]";
109:            public static final String TRUE = "true";
110:            public static final String UNDERSCORE = "_";
111:            public static final String UTF_8 = "UTF-8";
112:            public static final String Y = "y";
113:            public static final String YES = "yes";
114:
115:            public static final int MAX_LEN_APPCODE = 10;
116:            public static final int MAX_LEN_APPGROUP = 20;
117:            public static final int MAX_LEN_MSGCODE = 40;
118:            public static final int MAX_LEN_MSGTEXT = 1024;
119:
120:            public static final String ZERO = "0";
121:            public static final String MINUS_ONE = "-1";
122:            public static final String ONE = "1";
123:            public static final String TWO = "2";
124:            public static final String THREE = "3";
125:            public static final String FOUR = "4";
126:            public static final String FIVE = "5";
127:            public static final String SIX = "6";
128:            public static final String SEVEN = "7";
129:            public static final String EIGHT = "8";
130:            public static final String NINE = "9";
131:
132:            public static final String CRLF = RETURN + NEWLINE;
133:
134:            public static final int CHAR_LEFT_CHEV = (int) '<';
135:            public static final int CHAR_RIGHT_CHEV = (int) '>';
136:
137:            public static final long ONE_MINUTE = 1000 * 60;
138:            public static final long ONE_HOUR = ONE_MINUTE * 60;
139:            public static final long ONE_DAY = ONE_HOUR * 24;
140:            public static final long ONE_WEEK = ONE_DAY * 7;
141:
142:            // simple operation types
143:            public static final byte SELECT = 1;
144:            public static final byte INSERT = 2;
145:            public static final byte UPDATE = 3;
146:            public static final byte DELETE = 4;
147:
148:            // j2ee specific constants
149:            public static final String REQUIRED = "Required";
150:            public static final String REQUIRES_NEW = "RequiresNew";
151:            public static final String SUPPORTS = "Supports";
152:
153:            // http content types
154:            public static final String APPLICATION_X_WWW_FORM_URLENCODED = "application/x-www-form-urlencoded";
155:            public static final String TEXT_HTML = "text/html";
156:            public static final String TEXT_PLAIN = "text/plain";
157:            public static final String TEXT_XML = "text/xml";
158:
159:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.