blob: 065d93b8c337d4b6c95f3d387b12915abd4bf14c [file] [log] [blame]
/**
* Copyright (c) 2018 CEA
*
* 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:
* Jérémie Tatibouet (CEA) jeremie.tatibouet@cea.fr - Initial API and implementation
* Benoit Maggi (CEA) benoit.maggi@cea.fr - Initial API and implementation
* Shuai Li (CEA) shuai.li@cea.fr - Integration of sensiNact and Web of Things Thing Description
*
*/
package org.eclipse.papyrus.iotml.wot;
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>Security Algorithm Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.papyrus.iotml.wot.WoTPackage#getSecurityAlgorithmKind()
* @model
* @generated
*/
public enum SecurityAlgorithmKind implements Enumerator {
/**
* The '<em><b>MD5</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MD5_VALUE
* @generated
* @ordered
*/
MD5(0, "MD5", "MD5"),
/**
* The '<em><b>ES256</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ES256_VALUE
* @generated
* @ordered
*/
ES256(1, "ES256", "ES256"),
/**
* The '<em><b>ES512256</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ES512256_VALUE
* @generated
* @ordered
*/
ES512256(2, "ES512256", "ES512256");
/**
* The '<em><b>MD5</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MD5
* @model
* @generated
* @ordered
*/
public static final int MD5_VALUE = 0;
/**
* The '<em><b>ES256</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ES256
* @model
* @generated
* @ordered
*/
public static final int ES256_VALUE = 1;
/**
* The '<em><b>ES512256</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ES512256
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='ES512-256'"
* @generated
* @ordered
*/
public static final int ES512256_VALUE = 2;
/**
* An array of all the '<em><b>Security Algorithm Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final SecurityAlgorithmKind[] VALUES_ARRAY =
new SecurityAlgorithmKind[] {
MD5,
ES256,
ES512256,
};
/**
* A public read-only list of all the '<em><b>Security Algorithm Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<SecurityAlgorithmKind> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Security Algorithm Kind</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 SecurityAlgorithmKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SecurityAlgorithmKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Security Algorithm Kind</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 SecurityAlgorithmKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SecurityAlgorithmKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Security Algorithm Kind</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 SecurityAlgorithmKind get(int value) {
switch (value) {
case MD5_VALUE: return MD5;
case ES256_VALUE: return ES256;
case ES512256_VALUE: return ES512256;
}
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 SecurityAlgorithmKind(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int getValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
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;
}
} //SecurityAlgorithmKind