blob: 9c0f4799a1d91ffdb6c205f078d2b4496384e8af [file] [log] [blame]
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.references;
import com.android.tools.r8.Keep;
import com.android.tools.r8.utils.DescriptorUtils;
/** Reference to a class type or interface type. */
@Keep
public final class ClassReference implements TypeReference {
private final String descriptor;
private ClassReference(String descriptor) {
this.descriptor = descriptor;
}
static ClassReference fromDescriptor(String descriptor) {
return new ClassReference(descriptor);
}
public String getBinaryName() {
return DescriptorUtils.getBinaryNameFromDescriptor(descriptor);
}
@Override
public boolean isClass() {
return true;
}
@Override
public ClassReference asClass() {
return this;
}
@Override
public String getDescriptor() {
return descriptor;
}
@Override
public boolean equals(Object o) {
return this == o;
}
@Override
public int hashCode() {
return System.identityHashCode(this);
}
@Override
public String toString() {
return getDescriptor();
}
}