blob: a790094a686a69d27720fbf1c591b3b6d1780510 [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;
public abstract class KeepTypePattern {
public static KeepTypePattern any() {
return Any.getInstance();
}
private static class Any extends KeepTypePattern {
private static Any INSTANCE = null;
public static Any getInstance() {
if (INSTANCE == null) {
INSTANCE = new Any();
}
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 "*";
}
}
public abstract boolean isAny();
}