public int hashCode()

in tools/javac/Api.java [143:147]


        public int hashCode() {
            int result = name.hashCode();
            result = 31 * result + Arrays.hashCode(parameterTypes);
            return result;
        }