se.bjurr.violations.lib.model.generated.sarif.ImmutableState Maven / Gradle / Ivy
package se.bjurr.violations.lib.model.generated.sarif;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* Values of relevant expressions at the start of the thread flow that remain constant.
*
*/
public class ImmutableState {
private Map additionalProperties = new LinkedHashMap();
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public void setAdditionalProperty(String name, MultiformatMessageString value) {
this.additionalProperties.put(name, value);
}
public ImmutableState withAdditionalProperty(String name, MultiformatMessageString value) {
this.additionalProperties.put(name, value);
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(ImmutableState.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("additionalProperties");
sb.append('=');
sb.append(((this.additionalProperties == null)?"":this.additionalProperties));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.additionalProperties == null)? 0 :this.additionalProperties.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof ImmutableState) == false) {
return false;
}
ImmutableState rhs = ((ImmutableState) other);
return ((this.additionalProperties == rhs.additionalProperties)||((this.additionalProperties!= null)&&this.additionalProperties.equals(rhs.additionalProperties)));
}
}