com.google.javascript.refactoring.AutoValue_CodeReplacement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of closure-compiler-unshaded Show documentation
Show all versions of closure-compiler-unshaded Show documentation
Closure Compiler is a JavaScript optimizing compiler. It parses your
JavaScript, analyzes it, removes dead code and rewrites and minimizes
what's left. It also checks syntax, variable references, and types, and
warns about common JavaScript pitfalls. It is used in many of Google's
JavaScript apps, including Gmail, Google Web Search, Google Maps, and
Google Docs.
The newest version!
package com.google.javascript.refactoring;
import javax.annotation.processing.Generated;
import org.jspecify.nullness.Nullable;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_CodeReplacement extends CodeReplacement {
private final int startPosition;
private final int length;
private final String newContent;
private final String sortKey;
AutoValue_CodeReplacement(
int startPosition,
int length,
String newContent,
String sortKey) {
this.startPosition = startPosition;
this.length = length;
if (newContent == null) {
throw new NullPointerException("Null newContent");
}
this.newContent = newContent;
if (sortKey == null) {
throw new NullPointerException("Null sortKey");
}
this.sortKey = sortKey;
}
@Override
public int getStartPosition() {
return startPosition;
}
@Override
public int getLength() {
return length;
}
@Override
public String getNewContent() {
return newContent;
}
@Override
String getSortKey() {
return sortKey;
}
@Override
public String toString() {
return "CodeReplacement{"
+ "startPosition=" + startPosition + ", "
+ "length=" + length + ", "
+ "newContent=" + newContent + ", "
+ "sortKey=" + sortKey
+ "}";
}
@Override
public boolean equals(@Nullable Object o) {
if (o == this) {
return true;
}
if (o instanceof CodeReplacement) {
CodeReplacement that = (CodeReplacement) o;
return this.startPosition == that.getStartPosition()
&& this.length == that.getLength()
&& this.newContent.equals(that.getNewContent())
&& this.sortKey.equals(that.getSortKey());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= startPosition;
h$ *= 1000003;
h$ ^= length;
h$ *= 1000003;
h$ ^= newContent.hashCode();
h$ *= 1000003;
h$ ^= sortKey.hashCode();
return h$;
}
}