network.nerve.kit.model.dto.ProgramMethodArg Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2017-2019 nuls.io
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
package network.nerve.kit.model.dto;
import network.nerve.core.rpc.model.ApiModel;
import network.nerve.core.rpc.model.ApiModelProperty;
import java.util.Map;
@ApiModel(name = "合约方法参数详情")
public class ProgramMethodArg {
@ApiModelProperty(description = "参数类型")
private String type;
@ApiModelProperty(description = "参数名称")
private String name;
@ApiModelProperty(description = "是否必填")
private boolean required;
public ProgramMethodArg() {
}
public ProgramMethodArg(Map result) {
this.type = (String) result.get("type");
this.name = (String) result.get("name");
this.required = (boolean) result.get("required");
}
public ProgramMethodArg(String type, String name, boolean required) {
this.type = type;
this.name = name;
this.required = required;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isRequired() {
return required;
}
public void setRequired(boolean required) {
this.required = required;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProgramMethodArg that = (ProgramMethodArg) o;
if (required != that.required) {
return false;
}
if (type != null ? !type.equals(that.type) : that.type != null) {
return false;
}
return name != null ? name.equals(that.name) : that.name == null;
}
public boolean equalsNrc20(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProgramMethodArg that = (ProgramMethodArg) o;
if (required != that.required) {
return false;
}
return type != null ? type.equals(that.type) : that.type == null;
}
@Override
public int hashCode() {
int result = type != null ? type.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
result = 31 * result + (required ? 1 : 0);
return result;
}
@Override
public String toString() {
return "ProgramMethodArg{" +
"type=" + type +
", name=" + name +
", required=" + required +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy