Indentations break the feed.
[SquirrelJME.git] / buildSrc / src / main / java / cc / squirreljme / plugin / multivm / VMNameFormat.java
blob6083f3df0560ad3f87b459afe893d493786dc1ae
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 cc.squirreljme.plugin.multivm;
12 /**
13 * The format of the virtual machine name.
15 * @since 2020/08/06
17 public enum VMNameFormat
19 /** lowercase. */
20 LOWERCASE,
22 /** camelCase. */
23 CAMEL_CASE,
25 /** ProperNoun. */
26 PROPER_NOUN,
28 /* End. */