blob: b3f1a504271d4c997c40c7649ddece99d3c6a85c [file] [log] [blame]
// Copyright (c) 2023, 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.annotations;
/**
* Valid matches on member access flags and their negations.
*
* <p>The negated elements make it easier to express the inverse as we cannot use a "not/negation"
* operation syntactically.
*/
public enum MemberAccessFlags {
PUBLIC,
NON_PUBLIC,
PROTECTED,
NON_PROTECTED,
PACKAGE_PRIVATE,
NON_PACKAGE_PRIVATE,
PRIVATE,
NON_PRIVATE,
STATIC,
NON_STATIC,
FINAL,
NON_FINAL,
SYNTHETIC,
NON_SYNTHETIC
}