public Map getOperations()

in geronimo-openapi-impl/src/main/java/org/apache/geronimo/microprofile/openapi/impl/model/PathItemImpl.java [360:371]


    public Map<HttpMethod, Operation> getOperations() {
        final Map<HttpMethod, Operation> map = new HashMap<>();
        map.put(HttpMethod.DELETE, _dELETE);
        map.put(HttpMethod.GET, _gET);
        map.put(HttpMethod.HEAD, _hEAD);
        map.put(HttpMethod.OPTIONS, _oPTIONS);
        map.put(HttpMethod.PATCH, _pATCH);
        map.put(HttpMethod.POST, _pOST);
        map.put(HttpMethod.PUT, _pUT);
        map.put(HttpMethod.TRACE, _tRACE);
        return map;
    }