LogicOperation.java
/**
* Copyright (c) 2004-2025 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party benefici-
* aries to this license with respect to the terms applicable to their Third Party Software. Third Party Software li-
* censes only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*/
package org.osate.aadl2.errormodel.FaultTree;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.Enumerator;
/**
* <!-- begin-user-doc -->
* A representation of the literals of the enumeration '<em><b>Logic Operation</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.osate.aadl2.errormodel.FaultTree.FaultTreePackage#getLogicOperation()
* @model
* @generated
*/
public enum LogicOperation implements Enumerator {
/**
* The '<em><b>Or</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #OR_VALUE
* @generated
* @ordered
*/
OR(0, "Or", "Or"),
/**
* The '<em><b>And</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #AND_VALUE
* @generated
* @ordered
*/
AND(1, "And", "And"),
/**
* The '<em><b>Xor</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #XOR_VALUE
* @generated
* @ordered
*/
XOR(2, "Xor", "Xor"),
/**
* The '<em><b>Priority And</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PRIORITY_AND_VALUE
* @generated
* @ordered
*/
PRIORITY_AND(3, "PriorityAnd", "PriorityAnd"),
/**
* The '<em><b>KOf</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #KOF_VALUE
* @generated
* @ordered
*/
KOF(4, "kOf", "kOf"),
/**
* The '<em><b>KOrmore</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #KORMORE_VALUE
* @generated
* @ordered
*/
KORMORE(5, "kOrmore", "kOrmore"),
/**
* The '<em><b>KOrless</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #KORLESS_VALUE
* @generated
* @ordered
*/
KORLESS(6, "kOrless", "kOrless");
/**
* The '<em><b>Or</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Or</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #OR
* @model name="Or"
* @generated
* @ordered
*/
public static final int OR_VALUE = 0;
/**
* The '<em><b>And</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>And</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #AND
* @model name="And"
* @generated
* @ordered
*/
public static final int AND_VALUE = 1;
/**
* The '<em><b>Xor</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Xor</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #XOR
* @model name="Xor"
* @generated
* @ordered
*/
public static final int XOR_VALUE = 2;
/**
* The '<em><b>Priority And</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Priority And</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PRIORITY_AND
* @model name="PriorityAnd"
* @generated
* @ordered
*/
public static final int PRIORITY_AND_VALUE = 3;
/**
* The '<em><b>KOf</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>KOf</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #KOF
* @model name="kOf"
* @generated
* @ordered
*/
public static final int KOF_VALUE = 4;
/**
* The '<em><b>KOrmore</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>KOrmore</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #KORMORE
* @model name="kOrmore"
* @generated
* @ordered
*/
public static final int KORMORE_VALUE = 5;
/**
* The '<em><b>KOrless</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>KOrless</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #KORLESS
* @model name="kOrless"
* @generated
* @ordered
*/
public static final int KORLESS_VALUE = 6;
/**
* An array of all the '<em><b>Logic Operation</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final LogicOperation[] VALUES_ARRAY =
new LogicOperation[] {
OR,
AND,
XOR,
PRIORITY_AND,
KOF,
KORMORE,
KORLESS,
};
/**
* A public read-only list of all the '<em><b>Logic Operation</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<LogicOperation> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Logic Operation</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param literal the literal.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static LogicOperation get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
LogicOperation result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Logic Operation</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name the name.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static LogicOperation getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
LogicOperation result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Logic Operation</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the integer value.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static LogicOperation get(int value) {
switch (value) {
case OR_VALUE: return OR;
case AND_VALUE: return AND;
case XOR_VALUE: return XOR;
case PRIORITY_AND_VALUE: return PRIORITY_AND;
case KOF_VALUE: return KOF;
case KORMORE_VALUE: return KORMORE;
case KORLESS_VALUE: return KORLESS;
}
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final int value;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String name;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private LogicOperation(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
return literal;
}
} //LogicOperation