retrofit2.http.ParamQuerys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retrofit Show documentation
Show all versions of retrofit Show documentation
A type-safe HTTP client for Android and Java.
The newest version!
package retrofit2.http;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/** Created by ZhangZhenli on 2015/11/25. */
@Documented
@Target({TYPE})
@Retention(RUNTIME)
public @interface ParamQuerys {
String[] value();
/**
* Specifies whether the parameter {@linkplain #value() name} and value are already URL encoded.
*/
boolean encoded() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy