blob: 313f977e1f0dc16922004f496a1f8b606075d345 [file] [log] [blame]
// Copyright (c) 2019, 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.ir.analysis.value;
import com.android.tools.r8.graph.DexField;
public class SingleEnumValue extends SingleFieldValue {
/** Intentionally package private, use {@link AbstractValueFactory} instead. */
SingleEnumValue(DexField field) {
super(field);
}
@Override
public boolean isSingleEnumValue() {
return true;
}
@Override
public SingleEnumValue asSingleEnumValue() {
return this;
}
@Override
public String toString() {
return "SingleEnumValue(" + getField().toSourceString() + ")";
}
}