1 /*
2 * #%L
3 * This file is part of jFold.
4 * %%
5 * Copyright (C) 2012 - 2019 Mike Thomas <mikepthomas@outlook.com>
6 * %%
7 * jFold is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 * %
12 * jFold is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * %
17 * You should have received a copy of the GNU General Public License
18 * along with jFold. If not, see <http://www.gnu.org/licenses/>.
19 * #L%
20 */
21 package info.mikethomas.jfold.util;
22
23 /**
24 * <p>ResponseType class.</p>
25 *
26 * @author Michael Thomas (mikepthomas@outlook.com)
27 * @version 7.5.1
28 */
29 public enum ResponseType {
30
31 /** PyON Response. */
32 PYON,
33 /** String Response. */
34 STRING,
35 /** Void Response. */
36 VOID;
37 }