Remove Twitter links.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / pack / mem / HasByteOrder.java
bloba7e3614077c50cf1aba1244e6daab826f2ded162
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 Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.jvm.pack.mem;
12 import cc.squirreljme.jvm.mle.constants.ByteOrderType;
14 /**
15 * Interface used to describe any memory that has a byte order.
17 * @since 2021/02/14
19 public interface HasByteOrder
21 /**
22 * Returns the {@link ByteOrderType} of the memory.
24 * @return The {@link ByteOrderType} of the memory.
25 * @since 2021/02/14
27 int byteOrder();