static

in src/main/java/org/apache/commons/dbutils/wrappers/SqlNullCheckedResultSet.java [85:95]


    static {
        final Method[] methods = SqlNullCheckedResultSet.class.getMethods();
        for (final Method method : methods) {
            final String methodName = method.getName();

            if (methodName.startsWith(GET_NULL_PREFIX)) {
                final String normalName = "get" + methodName.substring(GET_NULL_PREFIX.length());
                NULL_METHODS.put(normalName, method);
            }
        }
    }