org.jboss.resteasy.reactive.common.model.MethodParameter Maven / Gradle / Ivy
package org.jboss.resteasy.reactive.common.model;
public class MethodParameter {
public String name;
public String type;
/**
* Generally this will be the same as type, unless the parameter is a
* collection, in which case 'type' will be the element type and this
* will be the collection type
*/
public String declaredType;
/**
* This will only be different from the declaredType if a TypeVariable was used.
* It is needed for proper reflection method lookups
*/
public String declaredUnresolvedType;
public String signature;
public ParameterType parameterType;
public boolean encoded;
private boolean single;
private String defaultValue;
private boolean optional;
private boolean isObtainedAsCollection;
public MethodParameter() {
}
public MethodParameter(String name, String type, String declaredType, String declaredUnresolvedType, String signature,
ParameterType parameterType,
boolean single,
String defaultValue, boolean isObtainedAsCollection, boolean optional, boolean encoded) {
this.name = name;
this.type = type;
this.declaredType = declaredType;
this.declaredUnresolvedType = declaredUnresolvedType;
this.signature = signature;
this.parameterType = parameterType;
this.single = single;
this.defaultValue = defaultValue;
this.isObtainedAsCollection = isObtainedAsCollection;
this.optional = optional;
this.encoded = encoded;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ParameterType getParameterType() {
return parameterType;
}
public void setParameterType(ParameterType parameterType) {
this.parameterType = parameterType;
}
public String getDefaultValue() {
return defaultValue;
}
public MethodParameter setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
return this;
}
public boolean isSingle() {
return single;
}
public MethodParameter setSingle(boolean single) {
this.single = single;
return this;
}
public String getDeclaredType() {
return declaredType;
}
public MethodParameter setDeclaredType(String declaredType) {
this.declaredType = declaredType;
return this;
}
public boolean isObtainedAsCollection() {
return isObtainedAsCollection;
}
public boolean isOptional() {
return optional;
}
public void setOptional(boolean optional) {
this.optional = optional;
}
public MethodParameter setObtainedAsCollection(boolean isObtainedAsCollection) {
this.isObtainedAsCollection = isObtainedAsCollection;
return this;
}
@Override
public String toString() {
return "MethodParameter{" +
"name='" + name + '\'' +
", type='" + type + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy