1 /*
   2  * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  */
   5 package com.oracle.appbundlers.utils;
   6 
   7 /**
   8  * @author Ramesh BG
   9  *
  10  */
  11 public enum ExtensionType implements Constants {
  12     NormalJar, ModularJar, ExplodedModules, Jmods;
  13 
  14     public static ExtensionType[] getModuleTypes() {
  15         return new ExtensionType[] { ModularJar, ExplodedModules, Jmods };
  16     }
  17 }