1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package net
.multiphasicapps
.classfile
;
12 import cc
.squirreljme
.runtime
.cldc
.debug
.Debugging
;
15 * This represents a flag which may be associated with an inner class.
19 public enum InnerClassFlag
60 public final int javaBitMask()
64 case PUBLIC
: return 0x0001;
65 case PRIVATE
: return 0x0002;
66 case PROTECTED
: return 0x0004;
67 case STATIC
: return 0x0008;
68 case FINAL
: return 0x0010;
69 case INTERFACE
: return 0x0200;
70 case ABSTRACT
: return 0x0400;
71 case SYNTHETIC
: return 0x1000;
72 case ANNOTATION
: return 0x2000;
73 case ENUM
: return 0x4000;
76 throw Debugging
.oops();