Remove Twitter links.
[SquirrelJME.git] / modules / tool-classfile / src / main / java / net / multiphasicapps / classfile / Flag.java
blob1b14a36da21b4988e4363a5e97227a7056821904
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package net.multiphasicapps.classfile;
12 /**
13 * This interface is used to flag the types used for flags.
15 * @since 2016/04/23
17 public interface Flag
18 extends Contexual
20 /**
21 * Returns the bit mask of the given flag.
23 * @return The bit mask of the given flag.
24 * @since 2017/07/07
26 int javaBitMask();
28 /**
29 * Returns the flag ordinal.
31 * @return The ordinal of the flag.
32 * @since 2016/04/23
34 int ordinal();