in streampipes-model/src/main/java/org/apache/streampipes/model/staticproperty/FreeTextStaticProperty.java [208:220]
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (value != null ? value.hashCode() : 0);
result = 31 * result + (requiredDatatype != null ? requiredDatatype.hashCode() : 0);
result = 31 * result + (requiredDomainProperty != null ? requiredDomainProperty.hashCode() : 0);
result = 31 * result + (mapsTo != null ? mapsTo.hashCode() : 0);
result = 31 * result + (multiLine ? 1 : 0);
result = 31 * result + (htmlAllowed ? 1 : 0);
result = 31 * result + (htmlFontFormat ? 1 : 0);
result = 31 * result + (placeholdersSupported ? 1 : 0);
result = 31 * result + (valueSpecification != null ? valueSpecification.hashCode() : 0);
return result;
}