Uses of Class
org.dspace.content.EntityType
-
Packages that use EntityType Package Description org.dspace.content Provides an API for reading and manipulating content in the DSpace system.org.dspace.content.dao org.dspace.content.dao.impl org.dspace.content.service org.dspace.versioning -
-
Uses of EntityType in org.dspace.content
Fields in org.dspace.content with type parameters of type EntityType Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<EntityType,Integer>EntityType_. idstatic javax.persistence.metamodel.SingularAttribute<EntityType,String>EntityType_. labelstatic javax.persistence.metamodel.SingularAttribute<RelationshipType,EntityType>RelationshipType_. leftTypestatic javax.persistence.metamodel.SingularAttribute<RelationshipType,EntityType>RelationshipType_. rightTypeMethods in org.dspace.content that return EntityType Modifier and Type Method Description EntityTypeEntityTypeServiceImpl. create(Context context)EntityTypeEntityTypeServiceImpl. create(Context context, String entityTypeString)EntityTypeEntityTypeServiceImpl. find(Context context, int id)EntityTypeEntityTypeServiceImpl. findByEntityType(Context context, String entityType)EntityTypeItemServiceImpl. getEntityType(Context context, Item item)EntityTypeRelationshipType. getLeftType()Standard getter for The leftType EntityType for this RelationshipTypeEntityTypeRelationshipType. getRightType()Standard getter for The rightType EntityType for this RelationshipTypeEntityTypeEntityServiceImpl. getType(Context context, Entity entity)Methods in org.dspace.content that return types with arguments of type EntityType Modifier and Type Method Description List<EntityType>EntityTypeServiceImpl. findAll(Context context)List<EntityType>EntityTypeServiceImpl. findAll(Context context, Integer limit, Integer offset)List<EntityType>EntityTypeServiceImpl. getEntityTypesByNames(Context context, List<String> names, Integer limit, Integer offset)Methods in org.dspace.content with parameters of type EntityType Modifier and Type Method Description intRelationshipTypeServiceImpl. countByEntityType(Context context, EntityType entityType)RelationshipTypeRelationshipTypeServiceImpl. create(Context context, EntityType leftEntityType, EntityType rightEntityType, String leftwardType, String rightwardType, Integer leftCardinalityMinInteger, Integer leftCardinalityMaxInteger, Integer rightCardinalityMinInteger, Integer rightCardinalityMaxInteger)RelationshipTypeRelationshipTypeServiceImpl. create(Context context, EntityType leftEntityType, EntityType rightEntityType, String leftwardType, String rightwardType, Integer leftCardinalityMinInteger, Integer leftCardinalityMaxInteger, Integer rightCardinalityMinInteger, Integer rightCardinalityMaxInteger, Boolean copyToLeft, Boolean copyToRight, RelationshipType.Tilted tilted)voidEntityTypeServiceImpl. delete(Context context, EntityType entityType)List<RelationshipType>RelationshipTypeServiceImpl. findByEntityType(Context context, EntityType entityType)List<RelationshipType>RelationshipTypeServiceImpl. findByEntityType(Context context, EntityType entityType, boolean isLeft)List<RelationshipType>RelationshipTypeServiceImpl. findByEntityType(Context context, EntityType entityType, boolean isLeft, Integer limit, Integer offset)List<RelationshipType>RelationshipTypeServiceImpl. findByEntityType(Context context, EntityType entityType, Integer limit, Integer offset)RelationshipTypeRelationshipTypeServiceImpl. findbyTypesAndTypeName(Context context, EntityType leftType, EntityType rightType, String leftwardType, String rightwardType)protected List<RelationshipMetadataValue>RelationshipMetadataServiceImpl. findLatestForDiscoveryMetadataValues(Context context, Item item, EntityType itemEntityType)Create the list of relation.*.latestForDiscovery virtual metadata values for the given item.voidRelationshipType. setLeftType(EntityType leftType)Standard setter for the leftType EntityType for this RelationshipTypevoidRelationshipType. setRightType(EntityType rightType)Standard setter for the rightType EntityType for this RelationshipTypevoidEntityTypeServiceImpl. update(Context context, EntityType entityType)Method parameters in org.dspace.content with type arguments of type EntityType Modifier and Type Method Description voidEntityTypeServiceImpl. update(Context context, List<EntityType> entityTypes) -
Uses of EntityType in org.dspace.content.dao
Methods in org.dspace.content.dao that return EntityType Modifier and Type Method Description EntityTypeEntityTypeDAO. findByEntityType(Context context, String entityType)This method returns the EntityType object that has the given entityType String as labelMethods in org.dspace.content.dao that return types with arguments of type EntityType Modifier and Type Method Description List<EntityType>EntityTypeDAO. getEntityTypesByNames(Context context, List<String> names, Integer limit, Integer offset)Methods in org.dspace.content.dao with parameters of type EntityType Modifier and Type Method Description intRelationshipTypeDAO. countByEntityType(Context context, EntityType entityType)Count all RelationshipType objects for which the given EntityType is equal to either the leftType or the rightTypeList<RelationshipType>RelationshipTypeDAO. findByEntityType(Context context, EntityType entityType)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeList<RelationshipType>RelationshipTypeDAO. findByEntityType(Context context, EntityType entityType, Boolean isLeft)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeList<RelationshipType>RelationshipTypeDAO. findByEntityType(Context context, EntityType entityType, Boolean isLeft, Integer limit, Integer offset)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeList<RelationshipType>RelationshipTypeDAO. findByEntityType(Context context, EntityType entityType, Integer limit, Integer offset)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeRelationshipTypeRelationshipTypeDAO. findbyTypesAndTypeName(Context context, EntityType leftType, EntityType rightType, String leftwardType, String rightwardType)This method is used to retrieve the RelationshipType object that has the same leftType, rightType, leftwardType and rightwardType as given in the parameters -
Uses of EntityType in org.dspace.content.dao.impl
Methods in org.dspace.content.dao.impl that return EntityType Modifier and Type Method Description EntityTypeEntityTypeDAOImpl. findByEntityType(Context context, String entityType)Methods in org.dspace.content.dao.impl that return types with arguments of type EntityType Modifier and Type Method Description List<EntityType>EntityTypeDAOImpl. getEntityTypesByNames(Context context, List<String> names, Integer limit, Integer offset)Methods in org.dspace.content.dao.impl with parameters of type EntityType Modifier and Type Method Description intRelationshipTypeDAOImpl. countByEntityType(Context context, EntityType entityType)List<RelationshipType>RelationshipTypeDAOImpl. findByEntityType(Context context, EntityType entityType)List<RelationshipType>RelationshipTypeDAOImpl. findByEntityType(Context context, EntityType entityType, Boolean isLeft)List<RelationshipType>RelationshipTypeDAOImpl. findByEntityType(Context context, EntityType entityType, Boolean isLeft, Integer limit, Integer offset)List<RelationshipType>RelationshipTypeDAOImpl. findByEntityType(Context context, EntityType entityType, Integer limit, Integer offset)RelationshipTypeRelationshipTypeDAOImpl. findbyTypesAndTypeName(Context context, EntityType leftType, EntityType rightType, String leftwardType, String rightwardType) -
Uses of EntityType in org.dspace.content.service
Methods in org.dspace.content.service that return EntityType Modifier and Type Method Description EntityTypeEntityTypeService. create(Context context, String entityTypeString)This method creates an EntityType object in the database with the given entityTypeString as it's labelEntityTypeEntityTypeService. findByEntityType(Context context, String entityType)Retrieves the EntityType that has the entityType String parameter as labelEntityTypeItemService. getEntityType(Context context, Item item)Retrieve the entity type of the given item.EntityTypeEntityService. getType(Context context, Entity entity)Returns the EntityType for the Item that is attached to the Entity that is passed along to this method.Methods in org.dspace.content.service that return types with arguments of type EntityType Modifier and Type Method Description List<EntityType>EntityTypeService. findAll(Context context)Retrieves all the EntityType objects currently in the systemList<EntityType>EntityTypeService. findAll(Context context, Integer limit, Integer offset)Retrieves all the EntityType objects currently in the systemList<EntityType>EntityTypeService. getEntityTypesByNames(Context context, List<String> names, Integer limit, Integer offset)Methods in org.dspace.content.service with parameters of type EntityType Modifier and Type Method Description intRelationshipTypeService. countByEntityType(Context context, EntityType entityType)Count all RelationshipType objects for which the given EntityType is equal to either the leftType or the rightTypeRelationshipTypeRelationshipTypeService. create(Context context, EntityType leftEntityType, EntityType rightEntityType, String leftwardType, String rightwardType, Integer leftCardinalityMinInteger, Integer leftCardinalityMaxInteger, Integer rightCardinalityMinInteger, Integer rightCardinalityMaxInteger)This method will support the creation of a RelationshipType object with the given parametersRelationshipTypeRelationshipTypeService. create(Context context, EntityType leftEntityType, EntityType rightEntityType, String leftwardType, String rightwardType, Integer leftCardinalityMinInteger, Integer leftCardinalityMaxInteger, Integer rightCardinalityMinInteger, Integer rightCardinalityMaxInteger, Boolean copyToLeft, Boolean copyToRight, RelationshipType.Tilted tilted)This method will support the creation of a RelationshipType object with the given parametersList<RelationshipType>RelationshipTypeService. findByEntityType(Context context, EntityType entityType)Returns a list of RelationshipType objects for which the given EntityType is equal to either the leftType or the rightTypeList<RelationshipType>RelationshipTypeService. findByEntityType(Context context, EntityType entityType, boolean isLeft)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeList<RelationshipType>RelationshipTypeService. findByEntityType(Context context, EntityType entityType, boolean isLeft, Integer limit, Integer offset)This method will return a list of RelationshipType objects for which the given EntityType object is equal to the leftType or rightTypeList<RelationshipType>RelationshipTypeService. findByEntityType(Context context, EntityType entityType, Integer limit, Integer offset)Returns a list of relationship types that matches provided EntityType object on any side of relationshipRelationshipTypeRelationshipTypeService. findbyTypesAndTypeName(Context context, EntityType leftType, EntityType rightType, String leftwardType, String rightwardType)Retrieves a RelationshipType for which the given parameters all match the one in the returned RelationshipType -
Uses of EntityType in org.dspace.versioning
Methods in org.dspace.versioning that return EntityType Modifier and Type Method Description protected EntityTypeVersioningConsumer. getEntityType(Context ctx, Item item)Get the entity type (stored in metadata field dspace.entity.type) of any item.Methods in org.dspace.versioning with parameters of type EntityType Modifier and Type Method Description protected List<RelationshipType>VersioningConsumer. getRelationshipTypes(Context ctx, EntityType entityType)Get all relationship types that have the given entity type on their left and/or right side.
-