blob: fb7ed26ef316ef452cb24dfa3b11aad7209b22cf [file] [log] [blame]
/*
* Copyright (c) 2006 IBM Corporation and others.
* 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:
* IBM - initial API and implementation
*
* $Id: AggregationKind.java,v 1.4 2006/12/14 15:49:27 khussey Exp $
*/
package org.eclipse.uml2.uml;
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>Aggregation Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* AggregationKind is an enumeration type that specifies the literals for defining the kind of aggregation of a property.
* <!-- end-model-doc -->
* @see org.eclipse.uml2.uml.UMLPackage#getAggregationKind()
* @model
* @generated
*/
public enum AggregationKind
implements Enumerator {
/**
* The '<em><b>None</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NONE
* @generated
* @ordered
*/
NONE_LITERAL(0, "none", "none"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Shared</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #SHARED
* @generated
* @ordered
*/
SHARED_LITERAL(1, "shared", "shared"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Composite</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #COMPOSITE
* @generated
* @ordered
*/
COMPOSITE_LITERAL(2, "composite", "composite"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>None</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates that the property has no aggregation.
* <!-- end-model-doc -->
* @see #NONE_LITERAL
* @model name="none"
* @generated
* @ordered
*/
public static final int NONE = 0;
/**
* The '<em><b>Shared</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates that the property has a shared aggregation.
* <!-- end-model-doc -->
* @see #SHARED_LITERAL
* @model name="shared"
* @generated
* @ordered
*/
public static final int SHARED = 1;
/**
* The '<em><b>Composite</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Indicates that the property is aggregated compositely, i.e., the composite object has responsibility for the existence and storage of the composed objects (parts).
* <!-- end-model-doc -->
* @see #COMPOSITE_LITERAL
* @model name="composite"
* @generated
* @ordered
*/
public static final int COMPOSITE = 2;
/**
* An array of all the '<em><b>Aggregation Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final AggregationKind[] VALUES_ARRAY = new AggregationKind[]{
NONE_LITERAL, SHARED_LITERAL, COMPOSITE_LITERAL,};
/**
* A public read-only list of all the '<em><b>Aggregation Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<AggregationKind> VALUES = Collections
.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Aggregation Kind</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static AggregationKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
AggregationKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Aggregation Kind</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static AggregationKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
AggregationKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Aggregation Kind</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static AggregationKind get(int value) {
switch (value) {
case NONE :
return NONE_LITERAL;
case SHARED :
return SHARED_LITERAL;
case COMPOSITE :
return COMPOSITE_LITERAL;
}
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 AggregationKind(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;
}
} //AggregationKind