blob: 2b3429125a9f4bb01579dd7f0bbb4781ddb9d917 [file] [log] [blame]
// Copyright (c) 2021, 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.optimize.enums.classification;
public abstract class EnumUnboxerMethodClassification {
public static UnknownEnumUnboxerMethodClassification unknown() {
return UnknownEnumUnboxerMethodClassification.getInstance();
}
public EnumUnboxerMethodClassification fixupAfterRemovingThisParameter() {
// Only static methods are currently classified by the enum unboxer.
assert isUnknownClassification();
return unknown();
}
public boolean isCheckNotNullClassification() {
return false;
}
public CheckNotNullEnumUnboxerMethodClassification asCheckNotNullClassification() {
return null;
}
public boolean isUnknownClassification() {
return false;
}
}