public boolean isGetterMethod()

in aws-wafv2-commons/src/main/java/com/amazonaws/mapstruct/accessor/AWSSDKAccessorNamingStrategy.java [41:51]


    public boolean isGetterMethod(ExecutableElement method) {
        String methodName = method.getSimpleName().toString();
        if (!method.getParameters().isEmpty()
                || method.isDefault()
                || method.getReturnType().getKind() == TypeKind.VOID
                || NON_GETTER_NAMES.contains(methodName)) {
            return false;
        }

        return true;
    }