blob: 4417b2e28b1f190c3812e9cf74baa53dcec3f89b [file] [log] [blame]
// Copyright (c) 2022, 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.keepanno.ast;
// TODO: finish this.
public abstract class KeepMethodAccessPattern {
public static KeepMethodAccessPattern any() {
return Any.getInstance();
}
public abstract boolean isAny();
private static class Any extends KeepMethodAccessPattern {
private static final Any INSTANCE = new Any();
private static Any getInstance() {
return INSTANCE;
}
@Override
public boolean isAny() {
return true;
}
@Override
public boolean equals(Object obj) {
return this == obj;
}
@Override
public int hashCode() {
return System.identityHashCode(this);
}
@Override
public String toString() {
return "*";
}
}
}