use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class RefactoringProblem method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(severity);
builder.append(message);
builder.append(location);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class RenameFeedback method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(offset);
builder.append(length);
builder.append(elementKindName);
builder.append(oldName);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class RenameOptions method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(newName);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class PubStatus method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(isListingPackageDirs);
return builder.toHashCode();
}
use of org.apache.commons.lang3.builder.HashCodeBuilder in project intellij-plugins by JetBrains.
the class Occurrences method hashCode.
@Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(element);
builder.append(offsets);
builder.append(length);
return builder.toHashCode();
}
Aggregations