Uses of Interface
org.camunda.bpm.model.xml.type.ModelElementType
Packages that use ModelElementType
Package
Description
-
Uses of ModelElementType in org.camunda.bpm.model.xml
Methods in org.camunda.bpm.model.xml that return ModelElementTypeModifier and TypeMethodDescriptionabstract ModelElementTypeModelBuilder.defineGenericType(String typeName, String typeNamespaceUri) Model.getType(Class<? extends ModelElementInstance> instanceClass) Gets the definedModelElementTypeof aModelElementInstance.Model.getTypeForName(String typeName) Gets the definedModelElementTypefor a type by its name.Model.getTypeForName(String namespaceUri, String typeName) Gets the definedModelElementTypefor a type by its name and namespace URI.Methods in org.camunda.bpm.model.xml that return types with arguments of type ModelElementTypeModifier and TypeMethodDescriptionModel.getTypes()Gets the collection of allModelElementTypedefined in the model.Methods in org.camunda.bpm.model.xml with parameters of type ModelElementTypeModifier and TypeMethodDescriptionModelInstance.getModelElementsByType(ModelElementType referencingType) Find all elements of a type.<T extends ModelElementInstance>
TModelInstance.newInstance(ModelElementType type) Creates a new instance of type.<T extends ModelElementInstance>
TModelInstance.newInstance(ModelElementType type, String id) Creates a new instance of type with user-defined id. -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl
Methods in org.camunda.bpm.model.xml.impl that return ModelElementTypeModifier and TypeMethodDescriptionModelBuilderImpl.defineGenericType(String typeName, String typeNamespaceUri) ModelImpl.getType(Class<? extends ModelElementInstance> instanceClass) ModelImpl.getTypeForName(String typeName) ModelImpl.getTypeForName(String namespaceUri, String typeName) ModelInstanceImpl.registerGenericType(String namespaceUri, String localName) Methods in org.camunda.bpm.model.xml.impl that return types with arguments of type ModelElementTypeMethods in org.camunda.bpm.model.xml.impl with parameters of type ModelElementTypeModifier and TypeMethodDescriptionModelInstanceImpl.getModelElementsByType(ModelElementType type) <T extends ModelElementInstance>
TModelInstanceImpl.newInstance(ModelElementType type) <T extends ModelElementInstance>
TModelInstanceImpl.newInstance(ModelElementType type, String id) voidModelImpl.registerType(ModelElementType modelElementType, Class<? extends ModelElementInstance> instanceType) Registers aModelElementTypein thisModel. -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.instance
Methods in org.camunda.bpm.model.xml.impl.instance that return ModelElementTypeMethods in org.camunda.bpm.model.xml.impl.instance with parameters of type ModelElementTypeModifier and TypeMethodDescriptionModelElementInstanceImpl.getChildElementsByType(ModelElementType childElementType) -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type
Classes in org.camunda.bpm.model.xml.impl.type that implement ModelElementTypeMethods in org.camunda.bpm.model.xml.impl.type that return ModelElementTypeModifier and TypeMethodDescriptionModelElementTypeBuilderImpl.build()ModelElementTypeImpl.getBaseType()Methods in org.camunda.bpm.model.xml.impl.type that return types with arguments of type ModelElementTypeModifier and TypeMethodDescriptionModelElementTypeImpl.getAllChildElementTypes()ModelElementTypeImpl.getAllExtendingTypes()ModelElementTypeImpl.getChildElementTypes()ModelElementTypeImpl.getExtendingTypes()Methods in org.camunda.bpm.model.xml.impl.type with parameters of type ModelElementTypeModifier and TypeMethodDescriptionModelElementTypeImpl.getChildElementCollection(ModelElementType childElementType) booleanModelElementTypeImpl.isBaseTypeOf(ModelElementType elementType) Test if a element type is a base type of this type.voidModelElementTypeImpl.registerChildElementType(ModelElementType childElementType) voidModelElementTypeImpl.registerExtendingType(ModelElementType modelType) Method parameters in org.camunda.bpm.model.xml.impl.type with type arguments of type ModelElementTypeModifier and TypeMethodDescriptionvoidModelElementTypeImpl.resolveBaseTypes(List<ModelElementType> baseTypes) Resolve all types which are base types of this typevoidModelElementTypeImpl.resolveExtendingTypes(Set<ModelElementType> allExtendingTypes) Resolve all types recursively which are extending this type -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.attribute
Methods in org.camunda.bpm.model.xml.impl.type.attribute that return ModelElementTypeConstructors in org.camunda.bpm.model.xml.impl.type.attribute with parameters of type ModelElementTypeModifierConstructorDescriptionBooleanAttribute(ModelElementType owningElementType) EnumAttribute(ModelElementType owningElementType, Class<T> type) NamedEnumAttribute(ModelElementType owningElementType, Class<T> type) StringAttribute(ModelElementType owningElementType) -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.child
Methods in org.camunda.bpm.model.xml.impl.type.child that return ModelElementTypeModifier and TypeMethodDescriptionChildElementCollectionImpl.getChildElementType(Model model) ChildElementCollectionImpl.getParentElementType()Constructors in org.camunda.bpm.model.xml.impl.type.child with parameters of type ModelElementTypeModifierConstructorDescriptionChildElementBuilderImpl(Class<T> childElementTypeClass, ModelElementType parentElementType) ChildElementCollectionBuilderImpl(Class<T> childElementTypeClass, ModelElementType parentElementType) -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.type.reference
Methods in org.camunda.bpm.model.xml.impl.type.reference that return ModelElementTypeModifier and TypeMethodDescriptionAttributeReferenceImpl.getReferenceSourceElementType()ElementReferenceCollectionImpl.getReferenceSourceElementType() -
Uses of ModelElementType in org.camunda.bpm.model.xml.impl.util
Methods in org.camunda.bpm.model.xml.impl.util that return types with arguments of type ModelElementTypeModifier and TypeMethodDescriptionstatic Collection<ModelElementType>ModelUtil.calculateAllBaseTypes(ModelElementType type) Calculate a collection of all base types for the given typestatic Collection<ModelElementType>ModelUtil.calculateAllExtendingTypes(Model model, Collection<ModelElementType> baseTypes) Calculate a collection of all extending types for the given base typesMethods in org.camunda.bpm.model.xml.impl.util with parameters of type ModelElementTypeModifier and TypeMethodDescriptionstatic Collection<ModelElementType>ModelUtil.calculateAllBaseTypes(ModelElementType type) Calculate a collection of all base types for the given typestatic StringModelUtil.getUniqueIdentifier(ModelElementType type) static voidModelUtil.setGeneratedUniqueIdentifier(ModelElementType type, ModelElementInstance modelElementInstance) Set unique identifier if the type has a String id attributestatic voidModelUtil.setGeneratedUniqueIdentifier(ModelElementType type, ModelElementInstance modelElementInstance, boolean withReferenceUpdate) Set unique identifier if the type has a String id attributestatic voidModelUtil.setNewIdentifier(ModelElementType type, ModelElementInstance modelElementInstance, String newId, boolean withReferenceUpdate) Set new identifier if the type has a String id attributeMethod parameters in org.camunda.bpm.model.xml.impl.util with type arguments of type ModelElementTypeModifier and TypeMethodDescriptionstatic Collection<ModelElementType>ModelUtil.calculateAllExtendingTypes(Model model, Collection<ModelElementType> baseTypes) Calculate a collection of all extending types for the given base typesstatic intModelUtil.getIndexOfElementType(ModelElementInstance modelElement, List<ModelElementType> childElementTypes) Find the index of the type of a model element in a list of element types -
Uses of ModelElementType in org.camunda.bpm.model.xml.instance
Methods in org.camunda.bpm.model.xml.instance that return ModelElementTypeModifier and TypeMethodDescriptionModelElementInstance.getElementType()Returns the element type of this.Methods in org.camunda.bpm.model.xml.instance with parameters of type ModelElementTypeModifier and TypeMethodDescriptionModelElementInstance.getChildElementsByType(ModelElementType childElementType) Return all child elements of a given type -
Uses of ModelElementType in org.camunda.bpm.model.xml.test
Fields in org.camunda.bpm.model.xml.test declared as ModelElementTypeModifier and TypeFieldDescriptionfinal ModelElementTypeAbstractModelElementInstanceTest.ChildElementAssumption.childElementTypefinal ModelElementTypeAbstractModelElementInstanceTest.TypeAssumption.extendsTypestatic ModelElementTypeAbstractModelElementInstanceTest.modelElementTypeMethods in org.camunda.bpm.model.xml.test that return ModelElementTypeModifier and TypeMethodDescriptionGetModelElementTypeRule.getModelElementType()AbstractModelElementInstanceTest.getType(Class<? extends ModelElementInstance> instanceClass) Methods in org.camunda.bpm.model.xml.test with parameters of type ModelElementTypeModifier and TypeMethodDescriptionAbstractModelElementInstanceTest.assertThatChildElement(ModelElementType childElementType) -
Uses of ModelElementType in org.camunda.bpm.model.xml.test.assertions
Methods in org.camunda.bpm.model.xml.test.assertions with parameters of type ModelElementTypeModifier and TypeMethodDescriptionstatic ModelElementTypeAssertModelAssertions.assertThat(ModelElementType actual) ModelElementTypeAssert.extendsType(ModelElementType baseType) ModelElementTypeAssert.hasChildElements(ModelElementType... types) AttributeAssert.hasOwningElementType(ModelElementType owningElementType) ChildElementAssert.hasParentElementType(ModelElementType parentElementType) ModelElementTypeAssert.isExtendedBy(ModelElementType... types) ModelElementTypeAssert.isNotExtendedBy(ModelElementType... types) Constructors in org.camunda.bpm.model.xml.test.assertions with parameters of type ModelElementType -
Uses of ModelElementType in org.camunda.bpm.model.xml.type
Methods in org.camunda.bpm.model.xml.type that return ModelElementTypeMethods in org.camunda.bpm.model.xml.type that return types with arguments of type ModelElementTypeModifier and TypeMethodDescriptionModelElementType.getAllChildElementTypes()ModelElementType.getAllExtendingTypes()ModelElementType.getChildElementTypes()ModelElementType.getExtendingTypes() -
Uses of ModelElementType in org.camunda.bpm.model.xml.type.attribute
Methods in org.camunda.bpm.model.xml.type.attribute that return ModelElementType -
Uses of ModelElementType in org.camunda.bpm.model.xml.type.child
Methods in org.camunda.bpm.model.xml.type.child that return ModelElementTypeModifier and TypeMethodDescriptionChildElementCollection.getChildElementType(Model model) Get the model element type of the elements contained in this collection.ChildElementCollection.getParentElementType()Get the model element type of the element owns the collection -
Uses of ModelElementType in org.camunda.bpm.model.xml.type.reference
Methods in org.camunda.bpm.model.xml.type.reference that return ModelElementType