blob: 50e21fff9c244faa7a833183e1c368bc320af090 [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.testPoint;
import javax.print.attribute.EnumSyntax;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonProperty;
import org.eclipse.osee.framework.jdk.core.util.EnumBase;
public class Operation extends EnumBase {
private static final long serialVersionUID = -3132727420541603024L;
public static final Operation OR = new Operation(0);
public static final Operation AND = new Operation(1);
private static final String[] stringTable = new String[] {"OR", "AND"};
private static final Operation[] enumValueTable = new Operation[] {OR, AND};
private Operation(int value) {
super(value);
}
@JsonCreator
public static Operation toEnum(String str) {
return (Operation) getEnum(str, stringTable, enumValueTable);
}
protected static Operation toEnum(int value) {
return (Operation) getEnum(value, enumValueTable);
}
@Override
protected String[] getStringTable() {
return stringTable;
}
@Override
protected EnumSyntax[] getEnumValueTable() {
return enumValueTable;
}
@Override
@JsonProperty
public String getName() {
return super.getName();
}
}