blob: e68c6f386590bb48c5056523c7896caf936a1e20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.environment;
import javax.print.attribute.EnumSyntax;
import org.eclipse.osee.framework.jdk.core.util.EnumBase;
/**
* @author Robert A. Fisher
*/
public class TestServerMode extends EnumBase {
private static final long serialVersionUID = 6600576749632500352L;
public static final TestServerMode MULTI = new TestServerMode(0);
public static final TestServerMode SINGLE = new TestServerMode(1);
private static final String[] stringTable = new String[] {"multi", "single"};
private static final TestServerMode[] enumValueTable = new TestServerMode[] {MULTI, SINGLE};
private TestServerMode(int value) {
super(value);
}
public static TestServerMode toEnum(String str) {
return (TestServerMode) getEnum(str, stringTable, enumValueTable);
}
protected static TestServerMode toEnum(int value) {
return (TestServerMode) getEnum(value, enumValueTable);
}
@Override
protected String[] getStringTable() {
return stringTable;
}
@Override
protected EnumSyntax[] getEnumValueTable() {
return enumValueTable;
}
}