/* * [PADType.java] * * Summary: enum to track Various types of PAD. * * Copyright: (c) 2014-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 2014-08-19 initial version */ package com.mindprod.zzz; /** * enum to track Various types of PAD. * * @author Roedy Green, Canadian Mind Products * @version 1.0 2014-08-19 initial version * @see com.mindprod.zzz.CompilerCat * @since 2014-08-19 */ public enum PADType { NO_PAD, PAD311, PAD40 }