Make Exported just be SquirrelJMEVendorApi.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / pack / constants / JarTocProperty.java
blobffaec61714fe34f512d0af7afd1d16f979fab443
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // Multi-Phasic Applications: SquirrelJME
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 cc.squirreljme.jvm.pack.constants;
12 /**
13 * Properties for Jar table of contents.
15 * @since 2020/12/08
17 public interface JarTocProperty
19 /** Flags for the property. */
20 byte INT_FLAGS =
23 /** Hash code of the entry. */
24 byte HASHCODE_NAME =
27 /** The name of the resource. */
28 byte OFFSET_NAME =
31 /** The size of the resource name. */
32 byte SIZE_NAME =
35 /** Offset to the resource data. */
36 byte OFFSET_DATA =
39 /** The size of the resource data. */
40 byte SIZE_DATA =
43 /** The properties available. */
44 byte NUM_JAR_TOC_PROPERTIES =