update copyright
[fedora-idea.git] / plugins / InspectionGadgets / src / com / siyeh / HardcodedMethodConstants.java
blob466f3b7ea992368f40ce40cd7b711c9785c70fd4
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.siyeh;
18 import org.jetbrains.annotations.NonNls;
20 /**
21 * User: anna
22 * Date: 30-Aug-2005
24 @NonNls public class HardcodedMethodConstants {
25 public static final String CLONE = "clone";
26 public static final String CLOSE = "close";
27 public static final String COMPARE_TO = "compareTo";
28 public static final String DUMP_STACKTRACE = "dumpStack";
29 public static final String ENDS_WITH = "endsWith";
30 public static final String EQUALS = "equals";
31 public static final String EQUALS_IGNORE_CASE = "equalsIgnoreCase";
32 public static final String ERR = "err";
33 public static final String FINALIZE = "finalize";
34 public static final String GC = "gc";
35 public static final String GET = "get";
36 public static final String GET_CHANNEL = "getChannel";
37 public static final String GET_CLASS = "getClass";
38 public static final String GET_CONNECTION = "getConnection";
39 public static final String HASH_CODE = "hashCode";
40 public static final String HAS_NEXT = "hasNext";
41 public static final String INDEX_OF = "indexOf";
42 public static final String JAVA_LANG = "java.lang";
43 public static final String ITERATOR = "iterator";
44 public static final String LAST_INDEX_OF = "lastIndexOf";
45 public static final String LENGTH = "length";
46 public static final String MAIN = "main";
47 public static final String NEXT = "next";
48 public static final String NOTIFY = "notify";
49 public static final String NOTIFY_ALL = "notifyAll";
50 public static final String OPEN = "open";
51 public static final String OPEN_SESSION = "openSession";
52 public static final String OUT = "out";
53 public static final String PUT = "put";
54 public static final String PUTALL = "putAll";
55 public static final String PRINT_STACK_TRACE = "printStackTrace";
56 public static final String REMOVE = "remove";
57 public static final String RUN = "run";
58 public static final String SERIAL_VERSION_UID = "serialVersionUID";
59 public static final String SET = "set";
60 public static final String SIZE = "size";
61 public static final String STARTS_WITH = "startsWith";
62 public static final String TO_LOWER_CASE = "toLowerCase";
63 public static final String TO_UPPER_CASE = "toUpperCase";
64 public static final String TO_STRING = "toString";
65 public static final String WAIT = "wait";