All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.umlg.associationclass.AssociationClass5 Maven / Gradle / Ivy

The newest version!
package org.umlg.associationclass;

import com.fasterxml.jackson.databind.ObjectMapper;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;

import org.apache.commons.text.StringEscapeUtils;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.umlg.runtime.adaptor.TransactionThreadEntityVar;
import org.umlg.runtime.adaptor.UMLG;
import org.umlg.runtime.adaptor.UmlgLabelConverterFactory;
import org.umlg.runtime.adaptor.UmlgTmpIdManager;
import org.umlg.runtime.collection.Filter;
import org.umlg.runtime.collection.Qualifier;
import org.umlg.runtime.collection.UmlgCollection;
import org.umlg.runtime.collection.UmlgOrderedSet;
import org.umlg.runtime.collection.UmlgPropertyAssociationClassOrderedSet;
import org.umlg.runtime.collection.UmlgRuntimeProperty;
import org.umlg.runtime.collection.UmlgSet;
import org.umlg.runtime.collection.memory.UmlgMemorySet;
import org.umlg.runtime.collection.persistent.PropertyTree;
import org.umlg.runtime.collection.persistent.UmlgAssociationClassOrderedSetImpl;
import org.umlg.runtime.collection.persistent.UmlgPropertyAssociationClassOrderedSetImpl;
import org.umlg.runtime.collection.persistent.UmlgSetImpl;
import org.umlg.runtime.domain.BaseUmlgCompositionNode;
import org.umlg.runtime.domain.CompositionNode;
import org.umlg.runtime.domain.DataTypeEnum;
import org.umlg.runtime.domain.UmlgNode;
import org.umlg.runtime.domain.UmlgRootNode;
import org.umlg.runtime.util.ObjectMapperFactory;
import org.umlg.runtime.util.Pair;
import org.umlg.runtime.util.UmlgFormatter;
import org.umlg.runtime.validation.UmlgConstraintViolation;
import org.umlg.runtime.validation.UmlgConstraintViolationException;
import org.umlg.runtime.validation.UmlgValidation;

public class AssociationClass5 extends BaseUmlgCompositionNode implements UmlgRootNode, CompositionNode {
	static final public long serialVersionUID = 1L;
	private UmlgPropertyAssociationClassOrderedSet toAssociationclass5;
	private UmlgOrderedSet AssociationClassAC3_toAssociationclass5;
	private UmlgPropertyAssociationClassOrderedSet fromAssociationclass5;
	private UmlgOrderedSet AssociationClassAC3_fromAssociationclass5;
	private UmlgSet name;
	private String tmpId;	// tmpId is only used the umlg restlet gui. It is never persisted. Its value is generated by the gui.

	/**
	 * constructor for AssociationClass5
	 * 
	 * @param id 
	 */
	public AssociationClass5(Object id)  {
		super(id);
	}
	
	/**
	 * constructor for AssociationClass5
	 * 
	 * @param vertex 
	 */
	public AssociationClass5(Vertex vertex)  {
		super(vertex);
	}
	
	/**
	 * default constructor for AssociationClass5
	 */
	public AssociationClass5()  {
		this(true);
	}
	
	/**
	 * constructor for AssociationClass5
	 * 
	 * @param persistent 
	 */
	public AssociationClass5(Boolean persistent)  {
		super(persistent);
	}

	public void addToFromAssociationclass5(AssociationClass5 fromAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( fromAssociationclass5 != null ) {
			this.fromAssociationclass5.add(fromAssociationclass5, associationClassAC3);
		}
	}
	
	public void addToFromAssociationclass5(UmlgOrderedSet> AssociationClassAC3_fromAssociationclass5) {
		for ( Pair pair : AssociationClassAC3_fromAssociationclass5 ) {
			addToFromAssociationclass5(pair.getFirst(), pair.getSecond());
		}
	}
	
	public void addToFromAssociationclass5(int index, AssociationClass5 fromAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( fromAssociationclass5 != null ) {
			this.fromAssociationclass5.add(index, fromAssociationclass5, associationClassAC3);
		}
	}
	
	public void addToFromAssociationclass5(int index, UmlgOrderedSet> AssociationClassAC3_fromAssociationclass5) {
		for ( Pair pair : AssociationClassAC3_fromAssociationclass5 ) {
			addToFromAssociationclass5(pair.getFirst(), pair.getSecond());
		}
	}
	
	public void addToFromAssociationclass5IgnoreInverse(AssociationClass5 fromAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( fromAssociationclass5 != null ) {
			this.fromAssociationclass5.add(fromAssociationclass5, associationClassAC3);
		}
	}
	
	public void addToName(String name) {
		if ( !this.name.isEmpty() ) {
			throw new RuntimeException("Property is a one and already has value, first clear it before adding!");
		}
		if ( name != null ) {
			List violations = validateName(name);
			if ( violations.isEmpty() ) {
				this.name.add(name);
			} else {
				throw new UmlgConstraintViolationException(violations);
			}
		}
	}
	
	public void addToNameIgnoreInverse(String name) {
		if ( !this.name.isEmpty() ) {
			throw new RuntimeException("Property is a one and already has value, first clear it before adding!");
		}
		if ( name != null ) {
			List violations = validateName(name);
			if ( violations.isEmpty() ) {
				this.name.add(name);
			} else {
				throw new UmlgConstraintViolationException(violations);
			}
		}
	}
	
	public void addToToAssociationclass5(AssociationClass5 toAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( toAssociationclass5 != null ) {
			this.toAssociationclass5.add(toAssociationclass5, associationClassAC3);
		}
	}
	
	public void addToToAssociationclass5(UmlgOrderedSet> AssociationClassAC3_toAssociationclass5) {
		for ( Pair pair : AssociationClassAC3_toAssociationclass5 ) {
			addToToAssociationclass5(pair.getFirst(), pair.getSecond());
		}
	}
	
	public void addToToAssociationclass5(int index, AssociationClass5 toAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( toAssociationclass5 != null ) {
			this.toAssociationclass5.add(index, toAssociationclass5, associationClassAC3);
		}
	}
	
	public void addToToAssociationclass5(int index, UmlgOrderedSet> AssociationClassAC3_toAssociationclass5) {
		for ( Pair pair : AssociationClassAC3_toAssociationclass5 ) {
			addToToAssociationclass5(pair.getFirst(), pair.getSecond());
		}
	}
	
	public void addToToAssociationclass5IgnoreInverse(AssociationClass5 toAssociationclass5, AssociationClassAC3 associationClassAC3) {
		if ( toAssociationclass5 != null ) {
			this.toAssociationclass5.add(toAssociationclass5, associationClassAC3);
		}
	}
	
	static public UmlgSet allInstances(Filter filter) {
		UmlgSet result = new UmlgMemorySet();
		result.addAll(UMLG.get().allInstances(AssociationClass5.class.getName(), filter));
		return result;
	}
	
	static public UmlgSet allInstances() {
		UmlgSet result = new UmlgMemorySet();
		result.addAll(UMLG.get().allInstances(AssociationClass5.class.getName()));
		return result;
	}
	
	@Override
	public List checkClassConstraints() {
		List result = new ArrayList();
		return result;
	}
	
	public void clearFromAssociationclass5() {
		this.fromAssociationclass5.clear();
		this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5));
	}
	
	public void clearName() {
		this.name.clear();
	}
	
	public void clearToAssociationclass5() {
		this.toAssociationclass5.clear();
		this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5));
	}
	
	@Override
	public void delete() {
		this.toAssociationclass5.clear();
		this.fromAssociationclass5.clear();
		TransactionThreadEntityVar.remove(this);
		this.vertex.remove();
	}
	
	@Override
	public void fromJson(Map propertyMap) {
		fromJsonDataTypeAndComposite(propertyMap);
		fromJsonNonCompositeOne(propertyMap);
		fromJsonNonCompositeRequiredMany(propertyMap);
	}
	
	@Override
	public void fromJson(String json) {
		ObjectMapper mapper = ObjectMapperFactory.INSTANCE.getObjectMapper();
		try {
			@SuppressWarnings(	"unchecked")
			 Map propertyMap = mapper.readValue(json, Map.class);
			fromJson(propertyMap);
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
	}
	
	@Override
	public void fromJsonDataTypeAndComposite(Map propertyMap) {
		if ( propertyMap.containsKey("name") ) {
			if ( propertyMap.get("name") != null ) {
				String name = (String)propertyMap.get("name");
				setName(name);
			} else {
				setName(null);
			}
		}
		if ( propertyMap.containsKey("tmpId") ) {
			if ( propertyMap.get("tmpId") != null ) {
				this.tmpId = (String)propertyMap.get("tmpId");
				UmlgTmpIdManager.INSTANCE.put(this.tmpId, getId());
			} else {
				this.tmpId = null;
			}
		}
	}
	
	@Override
	public void fromJsonNonCompositeOne(Map propertyMap) {
	}
	
	@Override
	public void fromJsonNonCompositeRequiredMany(Map propertyMap) {
	}
	
	public UmlgOrderedSet getAssociationClassAC3_fromAssociationclass5() {
		return this.AssociationClassAC3_fromAssociationclass5;
	}
	
	public AssociationClassAC3 getAssociationClassAC3_fromAssociationclass5_fromAssociationclass5(AssociationClass5 fromAssociationclass5) {
		for ( AssociationClassAC3 ac : this.AssociationClassAC3_fromAssociationclass5 ) {
			if ( ac.getFromAssociationclass5().equals(fromAssociationclass5) ) {
				return ac;
			}
		}
		return null;
	}
	
	public UmlgOrderedSet getAssociationClassAC3_toAssociationclass5() {
		return this.AssociationClassAC3_toAssociationclass5;
	}
	
	public AssociationClassAC3 getAssociationClassAC3_toAssociationclass5_toAssociationclass5(AssociationClass5 toAssociationclass5) {
		for ( AssociationClassAC3 ac : this.AssociationClassAC3_toAssociationclass5 ) {
			if ( ac.getToAssociationclass5().equals(toAssociationclass5) ) {
				return ac;
			}
		}
		return null;
	}
	
	public UmlgPropertyAssociationClassOrderedSet getFromAssociationclass5() {
		return this.fromAssociationclass5;
	}
	
	@Override
	public String getMetaDataAsJson() {
		return AssociationClass5.AssociationClass5RuntimePropertyEnum.asJson();
	}
	
	public String getName() {
		UmlgSet tmp = this.name;
		if ( !tmp.isEmpty() ) {
			return tmp.iterator().next();
		} else {
			return null;
		}
	}
	
	@Override
	public UmlgNode getOwningObject() {
		return null;
	}
	
	@Override
	public String getQualifiedName() {
		return "umlgtest::org::umlg::associationclass::AssociationClass5";
	}
	
	/**
	 * getQualifiers is called from the collection in order to update the index used to implement the qualifier
	 * 
	 * @param tumlRuntimeProperty 
	 * @param node 
	 * @param inverse 
	 */
	@Override
	public List getQualifiers(UmlgRuntimeProperty tumlRuntimeProperty, UmlgNode node, boolean inverse) {
		List result = Collections.emptyList();
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		if ( !inverse ) {
			runtimeProperty = AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName());
		} else {
			runtimeProperty = AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName());
		}
		if ( runtimeProperty != null && result.isEmpty() ) {
			switch ( runtimeProperty ) {
				default:
					result = Collections.emptyList();
			}
		
		}
		return result;
	}
	
	/**
	 * getSize is called from the BaseCollection.addInternal in order to save the size of the inverse collection to update the edge's sequence order
	 * 
	 * @param inverse 
	 * @param tumlRuntimeProperty 
	 */
	@Override
	public int getSize(boolean inverse, UmlgRuntimeProperty tumlRuntimeProperty) {
		int result = 0;
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		if ( !inverse ) {
			runtimeProperty = AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName());
		} else {
			runtimeProperty = AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName());
		}
		if ( runtimeProperty != null && result == 0 ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					result = toAssociationclass5.size();
					break;
			
				case fromAssociationclass5:
					result = fromAssociationclass5.size();
					break;
			
				case name:
					result = name.size();
					break;
			
				default:
					result = 0;
			}
		
		}
		return result;
	}
	
	public UmlgPropertyAssociationClassOrderedSet getToAssociationclass5() {
		return this.toAssociationclass5;
	}
	
	@Override
	public String getUid() {
		String uid;
		if ( !this.vertex.property("uid").isPresent() && this.vertex.property("uid").value() != null ) {
			uid=UUID.randomUUID().toString();
			this.vertex.property("uid", uid);
		} else {
			uid=this.vertex.value("uid");
		}
		return uid;
	}
	
	@Override
	public boolean hasOnlyOneCompositeParent() {
		int result = 0;
		return result == 1;
	}
	
	public void initDataTypeVariablesWithDefaultValues() {
	}
	
	public void initVariables() {
	}
	
	/**
	 * boolean properties' default values are initialized in the constructor via z_internalBooleanProperties
	 * 
	 * @param loaded 
	 */
	@Override
	public void initialiseProperties(boolean loaded) {
		this.toAssociationclass5 =  new UmlgPropertyAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), loaded, PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5), loaded);
		this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5), loaded);
		this.fromAssociationclass5 =  new UmlgPropertyAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), loaded, PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5), loaded);
		this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5), loaded);
		this.name =  new UmlgSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.name), loaded);
	}
	
	@Override
	public void initialiseProperty(UmlgRuntimeProperty tumlRuntimeProperty, boolean inverse, boolean loaded) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		if ( !inverse ) {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName()));
		} else {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName()));
		}
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5 =  new UmlgPropertyAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), loaded, PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5), loaded);
					this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5), loaded);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5 =  new UmlgPropertyAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), loaded, PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5), loaded);
					this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5), loaded);
					break;
			
				case name:
					this.name =  new UmlgSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.name), loaded);
					break;
			
			}
		
		}
	}
	
	@Override
	public UmlgRuntimeProperty inverseAdder(UmlgRuntimeProperty tumlRuntimeProperty, boolean inverse, UmlgNode umlgNode) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		if ( !inverse ) {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName()));
		} else {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName()));
		}
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5.inverseAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_toAssociationclass5:
					this.AssociationClassAC3_toAssociationclass5.inverseAdder((AssociationClassAC3)umlgNode);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5.inverseAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_fromAssociationclass5:
					this.AssociationClassAC3_fromAssociationclass5.inverseAdder((AssociationClassAC3)umlgNode);
					break;
			
			}
			
			return runtimeProperty;
		} else {
			return null;
		}
	}
	
	@Override
	public boolean isTinkerRoot() {
		return true;
	}
	
	public UmlgSet lookupFor_fromAssociationclass5_toAssociationclass5() {
		UmlgSet result = new UmlgMemorySet();
		Filter filter = new Filter() {
		    @Override
		    public boolean filter(AssociationClass5 entity){
		        return !entity.getFromAssociationclass5().contains(AssociationClass5.this);
		    }
		};
		result.addAll(org.umlg.associationclass.AssociationClass5.allInstances(filter));
		return result;
	}
	
	public UmlgSet lookupFor_toAssociationclass5_fromAssociationclass5() {
		UmlgSet result = new UmlgMemorySet();
		Filter filter = new Filter() {
		    @Override
		    public boolean filter(AssociationClass5 entity){
		        return !entity.getToAssociationclass5().contains(AssociationClass5.this);
		    }
		};
		result.addAll(org.umlg.associationclass.AssociationClass5.allInstances(filter));
		return result;
	}
	
	public void moveFromAssociationclass5(Integer index, AssociationClass5 fromAssociationclass5) {
		if ( fromAssociationclass5 != null ) {
			this.fromAssociationclass5.move(index, fromAssociationclass5, this.getAssociationClassAC3_fromAssociationclass5_fromAssociationclass5(fromAssociationclass5));
			this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5));
		}
	}
	
	public void moveToAssociationclass5(Integer index, AssociationClass5 toAssociationclass5) {
		if ( toAssociationclass5 != null ) {
			this.toAssociationclass5.move(index, toAssociationclass5, this.getAssociationClassAC3_toAssociationclass5_toAssociationclass5(toAssociationclass5));
			this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5));
		}
	}
	
	public void removeFromFromAssociationclass5(AssociationClass5 fromAssociationclass5) {
		if ( fromAssociationclass5 != null ) {
			this.fromAssociationclass5.remove(fromAssociationclass5);
			this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5));
		}
	}
	
	public void removeFromFromAssociationclass5(UmlgOrderedSet fromAssociationclass5) {
		if ( !fromAssociationclass5.isEmpty() ) {
			this.fromAssociationclass5.removeAll(fromAssociationclass5);
			this.AssociationClassAC3_fromAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.fromAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_fromAssociationclass5));
		}
	}
	
	public void removeFromName(String name) {
		if ( name != null ) {
			this.name.remove(name);
		}
	}
	
	public void removeFromName(UmlgSet name) {
		if ( !name.isEmpty() ) {
			this.name.removeAll(name);
		}
	}
	
	public void removeFromToAssociationclass5(AssociationClass5 toAssociationclass5) {
		if ( toAssociationclass5 != null ) {
			this.toAssociationclass5.remove(toAssociationclass5);
			this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5));
		}
	}
	
	public void removeFromToAssociationclass5(UmlgOrderedSet toAssociationclass5) {
		if ( !toAssociationclass5.isEmpty() ) {
			this.toAssociationclass5.removeAll(toAssociationclass5);
			this.AssociationClassAC3_toAssociationclass5 =  new UmlgAssociationClassOrderedSetImpl(this, PropertyTree.from(AssociationClass5RuntimePropertyEnum.toAssociationclass5), PropertyTree.from(AssociationClass5RuntimePropertyEnum.AssociationClassAC3_toAssociationclass5));
		}
	}
	
	public void setFromAssociationclass5(UmlgOrderedSet> AssociationClassAC3_fromAssociationclass5) {
		clearFromAssociationclass5();
		if ( AssociationClassAC3_fromAssociationclass5 != null ) {
			addToFromAssociationclass5(AssociationClassAC3_fromAssociationclass5);
		}
	}
	
	public void setName(String name) {
		if ( name == null ) {
			clearName();
		} else {
			z_internalClearName();
		}
		addToName(name);
	}
	
	public void setToAssociationclass5(UmlgOrderedSet> AssociationClassAC3_toAssociationclass5) {
		clearToAssociationclass5();
		if ( AssociationClassAC3_toAssociationclass5 != null ) {
			addToToAssociationclass5(AssociationClassAC3_toAssociationclass5);
		}
	}
	
	/**
	 * deep indicates that components also be serialized.
	 * 
	 * @param deep 
	 */
	@Override
	public String toJson(Boolean deep) {
		StringBuilder sb = new StringBuilder();
		if ( this.tmpId != null ) {
			sb.append("\"tmpId\": \"" + this.tmpId + "\", ");
		}
		sb.append("\"id\": \"" + getId() + "\", ");
		sb.append("\"name\": " + (getName() != null ? "\"" + StringEscapeUtils.escapeJson(getName()) + "\"" : null ));
		sb.append(", ");
		sb.append("\"qualifiedName\": \"" + getQualifiedName() + "\"");
		sb.append(", ");
		//PlaceHolder for restful
		sb.append("\"uri\": {}");
		sb.insert(0, "{");
		sb.append("}");
		return sb.toString();
	}
	
	@Override
	public String toJson() {
		return toJson(false);
	}
	
	/**
	 * deep indicates that components also be serialized.
	 * 
	 * @param deep 
	 */
	@Override
	public String toJsonWithoutCompositeParent(Boolean deep) {
		StringBuilder sb = new StringBuilder();
		if ( this.tmpId != null ) {
			sb.append("\"tmpId\": \"" + this.tmpId + "\", ");
		}
		sb.append("\"id\": \"" + getId() + "\", ");
		sb.append("\"name\": " + (getName() != null ? "\"" + StringEscapeUtils.escapeJson(getName()) + "\"" : null ));
		sb.append(", ");
		sb.append("\"qualifiedName\": \"" + getQualifiedName() + "\"");
		sb.append(", ");
		//PlaceHolder for restful
		sb.append("\"uri\": {}");
		sb.insert(0, "{");
		sb.append("}");
		return sb.toString();
	}
	
	@Override
	public String toJsonWithoutCompositeParent() {
		return toJsonWithoutCompositeParent(false);
	}
	
	@Override
	public List validateMultiplicities() {
		List result = new ArrayList();
		if ( getName() == null ) {
			result.add(new UmlgConstraintViolation("multiplicity", "umlgtest::org::umlg::associationclass::AssociationClass5::name", "lower multiplicity is 1"));
		}
		return result;
	}
	
	public List validateName(String name) {
		List result = new ArrayList();
		return result;
	}
	
	@Override
	public void z_internalAddPersistentValueToCollection(UmlgRuntimeProperty umlgRuntimeProperty, Object umlgNode) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(umlgRuntimeProperty.getQualifiedName()));
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_toAssociationclass5:
					this.AssociationClassAC3_toAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_fromAssociationclass5:
					this.AssociationClassAC3_fromAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
				case name:
					this.name.z_internalAdder((String)umlgNode);
					break;
			
			}
		
		}
	}
	
	@Override
	public void z_internalAddToCollection(UmlgRuntimeProperty umlgRuntimeProperty, Object umlgNode) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(umlgRuntimeProperty.getQualifiedName()));
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_toAssociationclass5:
					this.AssociationClassAC3_toAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_fromAssociationclass5:
					this.AssociationClassAC3_fromAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
				case name:
					this.name.z_internalAdder((String)umlgNode);
					break;
			
			}
		
		}
	}
	
	@Override
	public Set z_internalBooleanProperties() {
		Set result = new HashSet();
		return result;
	}
	
	public void z_internalClearFromAssociationclass5() {
		this.fromAssociationclass5.z_internalClear();
	}
	
	public void z_internalClearName() {
		this.name.z_internalClear();
	}
	
	public void z_internalClearToAssociationclass5() {
		this.toAssociationclass5.z_internalClear();
	}
	
	@Override
	public Set z_internalDataTypeProperties() {
		Set result = new HashSet();
		result.add(AssociationClass5RuntimePropertyEnum.name);
		return result;
	}
	
	@Override
	public Map z_internalDataTypePropertiesWithDefaultValues() {
		Map result = new HashMap();
		result.put(AssociationClass5RuntimePropertyEnum.name, "");
		return result;
	}
	
	@Override
	public UmlgCollection z_internalGetCollectionFor(UmlgRuntimeProperty tumlRuntimeProperty, boolean inverse) {
		UmlgCollection result = null;
		if ( result == null ) {
			AssociationClass5RuntimePropertyEnum runtimeProperty;
			if ( !inverse ) {
				runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName()));
			} else {
				runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName()));
			}
			if ( runtimeProperty != null ) {
				switch ( runtimeProperty ) {
					case toAssociationclass5:
						result = this.toAssociationclass5;
						break;
				
					case fromAssociationclass5:
						result = this.fromAssociationclass5;
						break;
				
					case name:
						result = this.name;
						break;
				
				}
			
			}
		}
		return result;
	}
	
	@Override
	public UmlgRuntimeProperty z_internalInverseAdder(UmlgRuntimeProperty tumlRuntimeProperty, boolean inverse, UmlgNode umlgNode) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		if ( !inverse ) {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getQualifiedName()));
		} else {
			runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(tumlRuntimeProperty.getInverseQualifiedName()));
		}
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_toAssociationclass5:
					this.AssociationClassAC3_toAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5.z_internalAdder((AssociationClass5)umlgNode);
					break;
			
				case AssociationClassAC3_fromAssociationclass5:
					this.AssociationClassAC3_fromAssociationclass5.z_internalAdder((AssociationClassAC3)umlgNode);
					break;
			
			}
			
			return runtimeProperty;
		} else {
			return null;
		}
	}
	
	@Override
	public void z_internalMarkCollectionLoaded(UmlgRuntimeProperty umlgRuntimeProperty, boolean loaded) {
		AssociationClass5RuntimePropertyEnum runtimeProperty;
		runtimeProperty = (AssociationClass5RuntimePropertyEnum.fromQualifiedName(umlgRuntimeProperty.getQualifiedName()));
		if ( runtimeProperty != null ) {
			switch ( runtimeProperty ) {
				case toAssociationclass5:
					this.toAssociationclass5.setLoaded(loaded);
					break;
			
				case AssociationClassAC3_toAssociationclass5:
					this.toAssociationclass5.setLoaded(loaded);
					break;
			
				case fromAssociationclass5:
					this.fromAssociationclass5.setLoaded(loaded);
					break;
			
				case AssociationClassAC3_fromAssociationclass5:
					this.fromAssociationclass5.setLoaded(loaded);
					break;
			
				case name:
					this.name.setLoaded(loaded);
					break;
			
			}
		
		}
	}

	static public enum AssociationClass5RuntimePropertyEnum implements UmlgRuntimeProperty {
		toAssociationclass5(/* qualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5",/* persistentName */ "toAssociationclass5",/* inverseName */ "fromAssociationclass5",/* inverseQualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5",/* isAssociationClassOne */ false,/* isMemberEndOfAssociationClass */ true,/* associationClassPropertyNameField */ "AssociationClassAC3_toAssociationclass5",/* inverseAssociationClassPropertyNameField */ "AssociationClassAC3_fromAssociationclass5",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ false,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ false,/* isComposite */ false,/* isInverseComposite */ false,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("AssociationClassAC3"),/* isOneToOne */ false,/* isOneToMany */ false,/* isManyToOne */ false,/* isManyToMany */ true,/* upper */ -1,/* lower */ 0,/* inverseUpper */ -1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ true,/* isInverseOrdered */ true,/* isUnique */ true,/* isInverseUnique */ true,/* isDerived */ false,/* isNavigable */ true,/* propertyType */ AssociationClass5.class,/* json */ "{\"name\": \"toAssociationclass5\", \"associationClassOne\": false, \"memberEndOfAssociationClass\": true, \"associationClassPropertyName\": \"AssociationClassAC3_toAssociationclass5\", \"inverseAssociationClassPropertyName\": \"AssociationClassAC3_fromAssociationclass5\", \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": false, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5\", \"persistentName\": \"toAssociationclass5\", \"inverseName\": \"fromAssociationclass5\", \"inverseQualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": false, \"composite\": false, \"inverseComposite\": false, \"oneToOne\": false, \"oneToMany\": false, \"manyToOne\": false, \"manyToMany\": true, \"upper\": -1, \"lower\": 0, \"inverseUpper\": -1, \"label\": \"AssociationClassAC3\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": true, \"inverseOrdered\": true, \"unique\": true, \"inverseUnique\": true, \"derived\": false, \"navigable\": true}",/* isChangeListenerAttribute */ false),
		AssociationClassAC3_toAssociationclass5(/* qualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5AC",/* persistentName */ "toAssociationclass5AC",/* inverseName */ "fromAssociationclass5",/* inverseQualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5AC",/* isAssociationClassOne */ true,/* isMemberEndOfAssociationClass */ false,/* associationClassPropertyNameField */ "AssociationClassAC3_toAssociationclass5",/* inverseAssociationClassPropertyNameField */ "AssociationClassAC3_fromAssociationclass5",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ false,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ false,/* isComposite */ false,/* isInverseComposite */ false,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("AssociationClassAC3_toAssociationclass5_AC"),/* isOneToOne */ false,/* isOneToMany */ false,/* isManyToOne */ false,/* isManyToMany */ true,/* upper */ -1,/* lower */ 0,/* inverseUpper */ -1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ true,/* isInverseOrdered */ true,/* isUnique */ true,/* isInverseUnique */ true,/* isDerived */ false,/* isNavigable */ true,/* propertyType */ AssociationClass5.class,/* json */ "{\"name\": \"AssociationClassAC3_toAssociationclass5\", \"associationClassOne\": true, \"memberEndOfAssociationClass\": false, \"associationClassPropertyName\": \"AssociationClassAC3_toAssociationclass5\", \"inverseAssociationClassPropertyName\": \"AssociationClassAC3_fromAssociationclass5\", \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": false, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5AC\", \"persistentName\": \"toAssociationclass5AC\", \"inverseName\": \"fromAssociationclass5\", \"inverseQualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5AC\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": false, \"composite\": false, \"inverseComposite\": false, \"oneToOne\": false, \"oneToMany\": false, \"manyToOne\": false, \"manyToMany\": true, \"upper\": -1, \"lower\": 0, \"inverseUpper\": -1, \"label\": \"AssociationClassAC3_toAssociationclass5_AC\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": true, \"inverseOrdered\": true, \"unique\": true, \"inverseUnique\": true, \"derived\": false, \"navigable\": true}",/* isChangeListenerAttribute */ false),
		fromAssociationclass5(/* qualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5",/* persistentName */ "fromAssociationclass5",/* inverseName */ "toAssociationclass5",/* inverseQualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5",/* isAssociationClassOne */ false,/* isMemberEndOfAssociationClass */ true,/* associationClassPropertyNameField */ "AssociationClassAC3_fromAssociationclass5",/* inverseAssociationClassPropertyNameField */ "AssociationClassAC3_toAssociationclass5",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ false,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ true,/* isComposite */ false,/* isInverseComposite */ false,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("AssociationClassAC3"),/* isOneToOne */ false,/* isOneToMany */ false,/* isManyToOne */ false,/* isManyToMany */ true,/* upper */ -1,/* lower */ 0,/* inverseUpper */ -1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ true,/* isInverseOrdered */ true,/* isUnique */ true,/* isInverseUnique */ true,/* isDerived */ false,/* isNavigable */ true,/* propertyType */ AssociationClass5.class,/* json */ "{\"name\": \"fromAssociationclass5\", \"associationClassOne\": false, \"memberEndOfAssociationClass\": true, \"associationClassPropertyName\": \"AssociationClassAC3_fromAssociationclass5\", \"inverseAssociationClassPropertyName\": \"AssociationClassAC3_toAssociationclass5\", \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": false, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5\", \"persistentName\": \"fromAssociationclass5\", \"inverseName\": \"toAssociationclass5\", \"inverseQualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": true, \"composite\": false, \"inverseComposite\": false, \"oneToOne\": false, \"oneToMany\": false, \"manyToOne\": false, \"manyToMany\": true, \"upper\": -1, \"lower\": 0, \"inverseUpper\": -1, \"label\": \"AssociationClassAC3\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": true, \"inverseOrdered\": true, \"unique\": true, \"inverseUnique\": true, \"derived\": false, \"navigable\": true}",/* isChangeListenerAttribute */ false),
		AssociationClassAC3_fromAssociationclass5(/* qualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5AC",/* persistentName */ "fromAssociationclass5AC",/* inverseName */ "toAssociationclass5",/* inverseQualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5AC",/* isAssociationClassOne */ true,/* isMemberEndOfAssociationClass */ false,/* associationClassPropertyNameField */ "AssociationClassAC3_fromAssociationclass5",/* inverseAssociationClassPropertyNameField */ "AssociationClassAC3_toAssociationclass5",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ false,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ true,/* isComposite */ false,/* isInverseComposite */ false,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("AssociationClassAC3_fromAssociationclass5_AC"),/* isOneToOne */ false,/* isOneToMany */ false,/* isManyToOne */ false,/* isManyToMany */ true,/* upper */ -1,/* lower */ 0,/* inverseUpper */ -1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ true,/* isInverseOrdered */ true,/* isUnique */ true,/* isInverseUnique */ true,/* isDerived */ false,/* isNavigable */ true,/* propertyType */ AssociationClass5.class,/* json */ "{\"name\": \"AssociationClassAC3_fromAssociationclass5\", \"associationClassOne\": true, \"memberEndOfAssociationClass\": false, \"associationClassPropertyName\": \"AssociationClassAC3_fromAssociationclass5\", \"inverseAssociationClassPropertyName\": \"AssociationClassAC3_toAssociationclass5\", \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": false, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::fromAssociationclass5AC\", \"persistentName\": \"fromAssociationclass5AC\", \"inverseName\": \"toAssociationclass5\", \"inverseQualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::toAssociationclass5AC\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": true, \"composite\": false, \"inverseComposite\": false, \"oneToOne\": false, \"oneToMany\": false, \"manyToOne\": false, \"manyToMany\": true, \"upper\": -1, \"lower\": 0, \"inverseUpper\": -1, \"label\": \"AssociationClassAC3_fromAssociationclass5_AC\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": true, \"inverseOrdered\": true, \"unique\": true, \"inverseUnique\": true, \"derived\": false, \"navigable\": true}",/* isChangeListenerAttribute */ false),
		name(/* qualifiedName */ "umlgtest::org::umlg::associationclass::AssociationClass5::name",/* persistentName */ "name",/* inverseName */ "inverseOf::name",/* inverseQualifiedName */ "inverseOf::umlgtest::org::umlg::associationclass::AssociationClass5::name",/* isAssociationClassOne */ false,/* isMemberEndOfAssociationClass */ false,/* associationClassPropertyNameField */ "null",/* inverseAssociationClassPropertyNameField */ "null",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ true,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ true,/* isComposite */ false,/* isInverseComposite */ false,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("name"),/* isOneToOne */ false,/* isOneToMany */ false,/* isManyToOne */ true,/* isManyToMany */ false,/* upper */ 1,/* lower */ 1,/* inverseUpper */ 1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ false,/* isInverseOrdered */ false,/* isUnique */ true,/* isInverseUnique */ false,/* isDerived */ false,/* isNavigable */ true,/* propertyType */ String.class,/* json */ "{\"name\": \"name\", \"associationClassOne\": false, \"memberEndOfAssociationClass\": false, \"associationClassPropertyName\": null, \"inverseAssociationClassPropertyName\": null, \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": true, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5::name\", \"persistentName\": \"name\", \"inverseName\": \"inverseOf::name\", \"inverseQualifiedName\": \"inverseOf::umlgtest::org::umlg::associationclass::AssociationClass5::name\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": true, \"composite\": false, \"inverseComposite\": false, \"oneToOne\": false, \"oneToMany\": false, \"manyToOne\": true, \"manyToMany\": false, \"upper\": 1, \"lower\": 1, \"inverseUpper\": 1, \"label\": \"name\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": false, \"inverseOrdered\": false, \"unique\": true, \"inverseUnique\": false, \"derived\": false, \"navigable\": true}",/* isChangeListenerAttribute */ false),
		umlgtest(/* qualifiedName */ "umlgtest",/* persistentName */ "umlgtest",/* inverseName */ "inverseOfumlgtest",/* inverseQualifiedName */ "inverseOfumlgtest",/* isAssociationClassOne */ false,/* isMemberEndOfAssociationClass */ false,/* associationClassPropertyNameField */ "null",/* inverseAssociationClassPropertyNameField */ "null",/* isAssociationClassProperty */ false,/* isOnePrimitivePropertyOfAssociationClass */ false,/* isOnePrimitive */ false,/* isReadOnly */ false,/* dataTypeEnum */ null,/* validations */ Collections.emptyList(),/* isManyPrimitive */ false,/* oneEnumeration */ false,/* manyEnumeration */ false,/* isControllingSide */ true,/* isComposite */ false,/* isInverseComposite */ true,/* label */ UmlgLabelConverterFactory.getUmlgLabelConverter().convert("rootAssociationClass5"),/* isOneToOne */ true,/* isOneToMany */ false,/* isManyToOne */ false,/* isManyToMany */ false,/* upper */ -1,/* lower */ 0,/* inverseUpper */ 1,/* isQualified */ false,/* isInverseQualified */ false,/* isOrdered */ false,/* isInverseOrdered */ false,/* isUnique */ false,/* isInverseUnique */ false,/* isDerived */ false,/* isNavigable */ false,/* propertyType */ Object.class,/* json */ "{\"name\": \"umlgtest\", \"associationClassOne\": false, \"memberEndOfAssociationClass\": false, \"associationClassPropertyName\": null, \"inverseAssociationClassPropertyName\": null, \"associationClassProperty\": false, \"onePrimitivePropertyOfAssociationClass\": false, \"onePrimitive\": false, \"readOnly\": false, \"dataTypeEnum\": null, \"validations\": null, \"qualifiedName\": \"umlgtest\", \"persistentName\": \"umlgtest\", \"inverseName\": \"inverseOfumlgtest\", \"inverseQualifiedName\": \"inverseOfumlgtest\", \"manyPrimitive\": false, \"oneEnumeration\": false, \"manyEnumeration\": false, \"controllingSide\": true, \"composite\": false, \"inverseComposite\": true, \"oneToOne\": true, \"oneToMany\": false, \"manyToOne\": false, \"manyToMany\": false, \"upper\": -1, \"lower\": 0, \"inverseUpper\": 1, \"label\": \"rootAssociationClass5\", \"qualified\": false, \"inverseQualified\": false, \"ordered\": false, \"inverseOrdered\": false, \"unique\": false, \"inverseUnique\": false, \"derived\": false, \"navigable\": false}",/* isChangeListenerAttribute */ false);
		private String _qualifiedName;
		private String _persistentName;
		private String _inverseName;
		private String _inverseQualifiedName;
		private boolean _associationClassOne;
		private boolean _memberEndOfAssociationClass;
		private String _associationClassPropertyName;
		private String _inverseAssociationClassPropertyName;
		private boolean _associationClassProperty;
		private boolean _onePrimitivePropertyOfAssociationClass;
		private boolean _onePrimitive;
		private Boolean _readOnly;
		private DataTypeEnum dataTypeEnum;
		private List validations;
		private boolean _manyPrimitive;
		private boolean _oneEnumeration;
		private boolean _manyEnumeration;
		private boolean _controllingSide;
		private boolean _composite;
		private boolean _inverseComposite;
		private String _label;
		private boolean _oneToOne;
		private boolean _oneToMany;
		private boolean _manyToOne;
		private boolean _manyToMany;
		private int _upper;
		private int _lower;
		private int _inverseUpper;
		private boolean _qualified;
		private boolean _inverseQualified;
		private boolean _ordered;
		private boolean _inverseOrdered;
		private boolean _unique;
		private boolean _inverseUnique;
		private boolean _derived;
		private boolean _navigability;
		private Class _propertyType;
		private String _json;
		private boolean _changeListener;
		/**
		 * constructor for AssociationClass5RuntimePropertyEnum
		 * 
		 * @param _qualifiedName 
		 * @param _persistentName 
		 * @param _inverseName 
		 * @param _inverseQualifiedName 
		 * @param _associationClassOne 
		 * @param _memberEndOfAssociationClass 
		 * @param _associationClassPropertyName 
		 * @param _inverseAssociationClassPropertyName 
		 * @param _associationClassProperty 
		 * @param _onePrimitivePropertyOfAssociationClass 
		 * @param _onePrimitive 
		 * @param _readOnly 
		 * @param dataTypeEnum 
		 * @param validations 
		 * @param _manyPrimitive 
		 * @param _oneEnumeration 
		 * @param _manyEnumeration 
		 * @param _controllingSide 
		 * @param _composite 
		 * @param _inverseComposite 
		 * @param _label 
		 * @param _oneToOne 
		 * @param _oneToMany 
		 * @param _manyToOne 
		 * @param _manyToMany 
		 * @param _upper 
		 * @param _lower 
		 * @param _inverseUpper 
		 * @param _qualified 
		 * @param _inverseQualified 
		 * @param _ordered 
		 * @param _inverseOrdered 
		 * @param _unique 
		 * @param _inverseUnique 
		 * @param _derived 
		 * @param _navigability 
		 * @param _propertyType 
		 * @param _json 
		 * @param _changeListener 
		 */
		private AssociationClass5RuntimePropertyEnum(String _qualifiedName, String _persistentName, String _inverseName, String _inverseQualifiedName, boolean _associationClassOne, boolean _memberEndOfAssociationClass, String _associationClassPropertyName, String _inverseAssociationClassPropertyName, boolean _associationClassProperty, boolean _onePrimitivePropertyOfAssociationClass, boolean _onePrimitive, Boolean _readOnly, DataTypeEnum dataTypeEnum, List validations, boolean _manyPrimitive, boolean _oneEnumeration, boolean _manyEnumeration, boolean _controllingSide, boolean _composite, boolean _inverseComposite, String _label, boolean _oneToOne, boolean _oneToMany, boolean _manyToOne, boolean _manyToMany, int _upper, int _lower, int _inverseUpper, boolean _qualified, boolean _inverseQualified, boolean _ordered, boolean _inverseOrdered, boolean _unique, boolean _inverseUnique, boolean _derived, boolean _navigability, Class _propertyType, String _json, boolean _changeListener)  {
			this._qualifiedName = _qualifiedName;
			this._persistentName = _persistentName;
			this._inverseName = _inverseName;
			this._inverseQualifiedName = _inverseQualifiedName;
			this._associationClassOne = _associationClassOne;
			this._memberEndOfAssociationClass = _memberEndOfAssociationClass;
			this._associationClassPropertyName = _associationClassPropertyName;
			this._inverseAssociationClassPropertyName = _inverseAssociationClassPropertyName;
			this._associationClassProperty = _associationClassProperty;
			this._onePrimitivePropertyOfAssociationClass = _onePrimitivePropertyOfAssociationClass;
			this._onePrimitive = _onePrimitive;
			this._readOnly = _readOnly;
			this.dataTypeEnum = dataTypeEnum;
			this.validations = validations;
			this._manyPrimitive = _manyPrimitive;
			this._oneEnumeration = _oneEnumeration;
			this._manyEnumeration = _manyEnumeration;
			this._controllingSide = _controllingSide;
			this._composite = _composite;
			this._inverseComposite = _inverseComposite;
			this._label = _label;
			this._oneToOne = _oneToOne;
			this._oneToMany = _oneToMany;
			this._manyToOne = _manyToOne;
			this._manyToMany = _manyToMany;
			this._upper = _upper;
			this._lower = _lower;
			this._inverseUpper = _inverseUpper;
			this._qualified = _qualified;
			this._inverseQualified = _inverseQualified;
			this._ordered = _ordered;
			this._inverseOrdered = _inverseOrdered;
			this._unique = _unique;
			this._inverseUnique = _inverseUnique;
			this._derived = _derived;
			this._navigability = _navigability;
			this._propertyType = _propertyType;
			this._json = _json;
			this._changeListener = _changeListener;
		}
	
		static public String asJson() {
			int count = 1;
			StringBuilder sb = new StringBuilder();;
			sb.append("{\"name\": \"AssociationClass5\", ");
			sb.append("\"qualifiedName\": \"umlgtest::org::umlg::associationclass::AssociationClass5\", ");
			sb.append("\"uri\": \"TODO\", ");
			sb.append("\"properties\": [");
			for ( AssociationClass5RuntimePropertyEnum l : AssociationClass5RuntimePropertyEnum.values() ) {
				sb.append(l.toJson());
				if ( count < AssociationClass5RuntimePropertyEnum.values().length ) {
					count++;
					sb.append(",");
				}
			}
			sb.append("]}");
			return sb.toString();
		}
		
		static public AssociationClass5RuntimePropertyEnum fromInverseQualifiedName(String inverseQualifiedName) {
			if ( umlgtest.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return umlgtest;
			}
			if ( name.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return name;
			}
			if ( AssociationClassAC3_fromAssociationclass5.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return AssociationClassAC3_fromAssociationclass5;
			}
			if ( fromAssociationclass5.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return fromAssociationclass5;
			}
			if ( AssociationClassAC3_toAssociationclass5.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return AssociationClassAC3_toAssociationclass5;
			}
			if ( toAssociationclass5.getInverseQualifiedName().equals(inverseQualifiedName) ) {
				return toAssociationclass5;
			}
			return null;
		}
		
		static public AssociationClass5RuntimePropertyEnum fromLabel(String _label) {
			if ( umlgtest.getLabel().equals(_label) ) {
				return umlgtest;
			}
			if ( name.getLabel().equals(_label) ) {
				return name;
			}
			if ( AssociationClassAC3_fromAssociationclass5.getLabel().equals(_label) ) {
				return AssociationClassAC3_fromAssociationclass5;
			}
			if ( fromAssociationclass5.getLabel().equals(_label) ) {
				return fromAssociationclass5;
			}
			if ( AssociationClassAC3_toAssociationclass5.getLabel().equals(_label) ) {
				return AssociationClassAC3_toAssociationclass5;
			}
			if ( toAssociationclass5.getLabel().equals(_label) ) {
				return toAssociationclass5;
			}
			return null;
		}
		
		static public AssociationClass5RuntimePropertyEnum fromQualifiedName(String qualifiedName) {
			if ( umlgtest.getQualifiedName().equals(qualifiedName) ) {
				return umlgtest;
			}
			if ( name.getQualifiedName().equals(qualifiedName) ) {
				return name;
			}
			if ( AssociationClassAC3_fromAssociationclass5.getQualifiedName().equals(qualifiedName) ) {
				return AssociationClassAC3_fromAssociationclass5;
			}
			if ( fromAssociationclass5.getQualifiedName().equals(qualifiedName) ) {
				return fromAssociationclass5;
			}
			if ( AssociationClassAC3_toAssociationclass5.getQualifiedName().equals(qualifiedName) ) {
				return AssociationClassAC3_toAssociationclass5;
			}
			if ( toAssociationclass5.getQualifiedName().equals(qualifiedName) ) {
				return toAssociationclass5;
			}
			return null;
		}
		
		public String getAssociationClassPropertyName() {
			return this._associationClassPropertyName;
		}
		
		public DataTypeEnum getDataTypeEnum() {
			return this.dataTypeEnum;
		}
		
		public String getInverseAssociationClassPropertyName() {
			return this._inverseAssociationClassPropertyName;
		}
		
		public String getInverseName() {
			return this._inverseName;
		}
		
		public String getInverseQualifiedName() {
			return this._inverseQualifiedName;
		}
		
		public int getInverseUpper() {
			return this._inverseUpper;
		}
		
		public String getJson() {
			return this._json;
		}
		
		public String getLabel() {
			return this._label;
		}
		
		public int getLower() {
			return this._lower;
		}
		
		public String getPersistentName() {
			return this._persistentName;
		}
		
		public Class getPropertyType() {
			return this._propertyType;
		}
		
		public String getQualifiedName() {
			return this._qualifiedName;
		}
		
		public Boolean getReadOnly() {
			return this._readOnly;
		}
		
		public int getUpper() {
			return this._upper;
		}
		
		public List getValidations() {
			return this.validations;
		}
		
		public boolean isAssociationClassOne() {
			return this._associationClassOne;
		}
		
		public boolean isAssociationClassProperty() {
			return this._associationClassProperty;
		}
		
		public boolean isChangeListener() {
			return this._changeListener;
		}
		
		public boolean isComposite() {
			return this._composite;
		}
		
		public boolean isControllingSide() {
			return this._controllingSide;
		}
		
		public boolean isDerived() {
			return this._derived;
		}
		
		public boolean isInverseComposite() {
			return this._inverseComposite;
		}
		
		public boolean isInverseOrdered() {
			return this._inverseOrdered;
		}
		
		public boolean isInverseQualified() {
			return this._inverseQualified;
		}
		
		public boolean isInverseUnique() {
			return this._inverseUnique;
		}
		
		public boolean isManyEnumeration() {
			return this._manyEnumeration;
		}
		
		public boolean isManyPrimitive() {
			return this._manyPrimitive;
		}
		
		public boolean isManyToMany() {
			return this._manyToMany;
		}
		
		public boolean isManyToOne() {
			return this._manyToOne;
		}
		
		public boolean isMemberEndOfAssociationClass() {
			return this._memberEndOfAssociationClass;
		}
		
		public boolean isNavigability() {
			return this._navigability;
		}
		
		public boolean isOneEnumeration() {
			return this._oneEnumeration;
		}
		
		public boolean isOnePrimitive() {
			return this._onePrimitive;
		}
		
		public boolean isOnePrimitivePropertyOfAssociationClass() {
			return this._onePrimitivePropertyOfAssociationClass;
		}
		
		public boolean isOneToMany() {
			return this._oneToMany;
		}
		
		public boolean isOneToOne() {
			return this._oneToOne;
		}
		
		public boolean isOrdered() {
			return this._ordered;
		}
		
		public boolean isQualified() {
			return this._qualified;
		}
		
		public boolean isUnique() {
			return this._unique;
		}
		
		@Override
		public boolean isValid(int elementCount) {
			if ( isQualified() ) {
				return elementCount >= getLower();
			} else {
				return (getUpper() == -1 || elementCount <= getUpper()) && elementCount >= getLower();
			}
		}
		
		@Override
		public String toJson() {
			return getJson();
		}
	
	
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy