blob: 0f7dca59d188cc6b51774651606a77a21e291f43 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
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>Ui Date Format</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiDateFormat()
* @model
* @generated
*/
public enum UiDateFormat implements Enumerator {
/**
* The '<em><b>DATE</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DATE_VALUE
* @generated
* @ordered
*/
DATE(0, "DATE", "DATE"),
/**
* The '<em><b>TIME</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #TIME_VALUE
* @generated
* @ordered
*/
TIME(1, "TIME", "TIME"),
/**
* The '<em><b>DATE TIME</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DATE_TIME_VALUE
* @generated
* @ordered
*/
DATE_TIME(2, "DATE_TIME", "DATE_TIME");
/**
* The '<em><b>DATE</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>DATE</b></em>' literal object isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @see #DATE
* @model
* @generated
* @ordered
*/
public static final int DATE_VALUE = 0;
/**
* The '<em><b>TIME</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>TIME</b></em>' literal object isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @see #TIME
* @model
* @generated
* @ordered
*/
public static final int TIME_VALUE = 1;
/**
* The '<em><b>DATE TIME</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>DATE TIME</b></em>' literal object isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @see #DATE_TIME
* @model
* @generated
* @ordered
*/
public static final int DATE_TIME_VALUE = 2;
/**
* An array of all the '<em><b>Ui Date Format</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final UiDateFormat[] VALUES_ARRAY =
new UiDateFormat[] {
DATE,
TIME,
DATE_TIME,
};
/**
* A public read-only list of all the '<em><b>Ui Date Format</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<UiDateFormat> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Ui Date Format</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 UiDateFormat get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
UiDateFormat result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Ui Date Format</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 UiDateFormat getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
UiDateFormat result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Ui Date Format</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 UiDateFormat get(int value) {
switch (value) {
case DATE_VALUE: return DATE;
case TIME_VALUE: return TIME;
case DATE_TIME_VALUE: return DATE_TIME;
}
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 UiDateFormat(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;
}
} //UiDateFormat