001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.util;
016    
017    /**
018     * @author Brian Wing Shun Chan
019     */
020    public class Validator_IW {
021            public static Validator_IW getInstance() {
022                    return _instance;
023            }
024    
025            public boolean equals(boolean boolean1, boolean boolean2) {
026                    return Validator.equals(boolean1, boolean2);
027            }
028    
029            public boolean equals(byte byte1, byte byte2) {
030                    return Validator.equals(byte1, byte2);
031            }
032    
033            public boolean equals(char char1, char char2) {
034                    return Validator.equals(char1, char2);
035            }
036    
037            public boolean equals(double double1, double double2) {
038                    return Validator.equals(double1, double2);
039            }
040    
041            public boolean equals(float float1, float float2) {
042                    return Validator.equals(float1, float2);
043            }
044    
045            public boolean equals(int int1, int int2) {
046                    return Validator.equals(int1, int2);
047            }
048    
049            public boolean equals(long long1, long long2) {
050                    return Validator.equals(long1, long2);
051            }
052    
053            public boolean equals(java.lang.Object obj1, java.lang.Object obj2) {
054                    return Validator.equals(obj1, obj2);
055            }
056    
057            public boolean equals(short short1, short short2) {
058                    return Validator.equals(short1, short2);
059            }
060    
061            public boolean isAddress(java.lang.String address) {
062                    return Validator.isAddress(address);
063            }
064    
065            public boolean isAscii(char c) {
066                    return Validator.isAscii(c);
067            }
068    
069            public boolean isChar(char c) {
070                    return Validator.isChar(c);
071            }
072    
073            public boolean isChar(java.lang.String s) {
074                    return Validator.isChar(s);
075            }
076    
077            public boolean isDate(int month, int day, int year) {
078                    return Validator.isDate(month, day, year);
079            }
080    
081            public boolean isDigit(char c) {
082                    return Validator.isDigit(c);
083            }
084    
085            public boolean isDigit(java.lang.String s) {
086                    return Validator.isDigit(s);
087            }
088    
089            public boolean isDomain(java.lang.String domainName) {
090                    return Validator.isDomain(domainName);
091            }
092    
093            public boolean isEmailAddress(java.lang.String emailAddress) {
094                    return Validator.isEmailAddress(emailAddress);
095            }
096    
097            public boolean isEmailAddressSpecialChar(char c) {
098                    return Validator.isEmailAddressSpecialChar(c);
099            }
100    
101            public boolean isGregorianDate(int month, int day, int year) {
102                    return Validator.isGregorianDate(month, day, year);
103            }
104    
105            public boolean isHex(java.lang.String s) {
106                    return Validator.isHex(s);
107            }
108    
109            public boolean isHTML(java.lang.String s) {
110                    return Validator.isHTML(s);
111            }
112    
113            public boolean isIPAddress(java.lang.String ipAddress) {
114                    return Validator.isIPAddress(ipAddress);
115            }
116    
117            public boolean isJulianDate(int month, int day, int year) {
118                    return Validator.isJulianDate(month, day, year);
119            }
120    
121            public boolean isLUHN(java.lang.String number) {
122                    return Validator.isLUHN(number);
123            }
124    
125            public boolean isName(java.lang.String name) {
126                    return Validator.isName(name);
127            }
128    
129            public boolean isNotNull(java.lang.Long l) {
130                    return Validator.isNotNull(l);
131            }
132    
133            public boolean isNotNull(java.lang.Object obj) {
134                    return Validator.isNotNull(obj);
135            }
136    
137            public boolean isNotNull(java.lang.Object[] array) {
138                    return Validator.isNotNull(array);
139            }
140    
141            public boolean isNotNull(java.lang.String s) {
142                    return Validator.isNotNull(s);
143            }
144    
145            public boolean isNull(java.lang.Long l) {
146                    return Validator.isNull(l);
147            }
148    
149            public boolean isNull(java.lang.Object obj) {
150                    return Validator.isNull(obj);
151            }
152    
153            public boolean isNull(java.lang.Object[] array) {
154                    return Validator.isNull(array);
155            }
156    
157            public boolean isNull(java.lang.String s) {
158                    return Validator.isNull(s);
159            }
160    
161            public boolean isNumber(java.lang.String number) {
162                    return Validator.isNumber(number);
163            }
164    
165            public boolean isPassword(java.lang.String password) {
166                    return Validator.isPassword(password);
167            }
168    
169            public boolean isPhoneNumber(java.lang.String phoneNumber) {
170                    return Validator.isPhoneNumber(phoneNumber);
171            }
172    
173            public boolean isUrl(java.lang.String url) {
174                    return Validator.isUrl(url);
175            }
176    
177            public boolean isVariableName(java.lang.String variableName) {
178                    return Validator.isVariableName(variableName);
179            }
180    
181            public boolean isVariableTerm(java.lang.String s) {
182                    return Validator.isVariableTerm(s);
183            }
184    
185            public boolean isWhitespace(char c) {
186                    return Validator.isWhitespace(c);
187            }
188    
189            public boolean isXml(java.lang.String s) {
190                    return Validator.isXml(s);
191            }
192    
193            private Validator_IW() {
194            }
195    
196            private static Validator_IW _instance = new Validator_IW();
197    }