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