/* * Created on 2012/08/02 * Copyright (C) 2012 Koga Laboratory. All rights reserved. * */ package org.mklab.tool.control.system.continuous; /** * 連続PIDコントローラのタイプを表す列挙型です。 * * @author esumi * @version $Revision$, 2012/08/02 */ public enum ContinuousPIDType { /** 並列 */ PARALELL, /** 理想 */ IDEAL; }