use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class Location method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(file);
builder.append(offset);
builder.append(length);
builder.append(startLine);
builder.append(startColumn);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class MoveFileOptions method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(newFile);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class NavigationRegion method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(offset);
builder.append(length);
builder.append(targets);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class RemoveContentOverlay method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(type);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class RequestError method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(code);
builder.append(message);
builder.append(stackTrace);
return builder.toHashCode();
}
Aggregations