--- /dev/null 2016-08-19 23:41:42.000000000 +0530 +++ new/functional/appBundlerTestsJDK9/appBundlerTestsJDK9/test/com/oracle/appbundlers/tests/functionality/jdk9test/ExtensionType.java 2016-08-19 23:41:41.002920500 +0530 @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + */ +package com.oracle.appbundlers.tests.functionality.jdk9test; + +import com.oracle.appbundlers.utils.Constants; + +/** + * @author Ramesh BG + * + */ +public enum ExtensionType implements Constants { + NormalJar, ModularJar, ExplodedModules, Jmods; + + public static ExtensionType[] getModuleTypes() { + return new ExtensionType[] { ModularJar, ExplodedModules, Jmods }; + } +}