All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.client.meta.Parameter Maven / Gradle / Ivy

There is a newer version: 0.9.35
Show newest version
package org.babyfish.jimmer.client.meta;

import org.jetbrains.annotations.Nullable;

public interface Parameter extends Node {

    Operation getDeclaringOperation();

    String getName();

    Type getType();

    int getOriginalIndex();

    String getRequestParam();

    String getPathVariable();

    boolean isRequestBody();

    @Nullable
    Document getDocument();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy