Uses of Class
org.ofbiz.core.entity.GenericValue
Packages that use GenericValue
Package
Description
-
Uses of GenericValue in org.ofbiz.core.entity
Fields in org.ofbiz.core.entity declared as GenericValueFields in org.ofbiz.core.entity with type parameters of type GenericValueModifier and TypeFieldDescriptionprotected final UtilCache<String,List<GenericValue>> GenericDelegator.allCacheprotected final UtilCache<GenericPK,List<GenericValue>> GenericDelegator.andCacheprotected final UtilCache<GenericEntity,GenericValue> GenericDelegator.primaryKeyCacheGenericValue.relatedCacheHashMap to cache various related entity collectionsGenericValue.relatedOneCacheHashMap to cache various related cardinality on entity collectionsprotected List<GenericValue>EntitySaxReader.valuesToWriteMethods in org.ofbiz.core.entity with type parameters of type GenericValueModifier and TypeMethodDescriptionstatic <T extends GenericValue>
List<T>EntityUtil.filterByAnd(List<T> values, List<? extends EntityExpr> exprs) returns the values that match the exprs in liststatic <T extends GenericValue>
List<T>returns the values in the order specifiedMethods in org.ofbiz.core.entity that return GenericValueModifier and TypeMethodDescriptionDelegatorInterface.create(GenericValue value) DelegatorInterface.create(GenericValue value, boolean doCacheClear) Creates a Entity in the form of a GenericValue and write it to the database.Creates a Entity in the form of a GenericValue and write it to the datasource.Creates a Entity in the form of a GenericValue and write it to the datasource.GenericDelegator.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the datasource.GenericDelegator.create(GenericValue value, boolean doCacheClear) Creates a Entity in the form of a GenericValue and write it to the datasource.GenericHelper.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the databaseGenericHelperDAO.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the databaseGenericValue.create()LockedDatabaseGenericDelegator.create(GenericValue value) LockedDatabaseGenericDelegator.create(GenericValue value, boolean doCacheClear) MemoryHelper.create(GenericValue value) EntityListIterator.currentGenericValue()NOTE: Calling this method does return the current value, but so does calling next() or previous(), so calling one of those AND this method will cause the value to be created twiceDelegatorInterface.findByPrimaryKey(String entityName, Map<String, ?> fields) DelegatorInterface.findByPrimaryKey(GenericPK primaryKey) GenericDelegator.findByPrimaryKey(String entityName, Map<String, ?> fields) Find a Generic Entity by its Primary Key.GenericDelegator.findByPrimaryKey(GenericPK primaryKey) Find a Generic Entity by its Primary Key.GenericHelper.findByPrimaryKey(GenericPK primaryKey) Find a Generic Entity by its Primary KeyGenericHelperDAO.findByPrimaryKey(GenericPK primaryKey) Find a Generic Entity by its Primary KeyLockedDatabaseGenericDelegator.findByPrimaryKey(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.findByPrimaryKey(GenericPK primaryKey) MemoryHelper.findByPrimaryKey(GenericPK primaryKey) DelegatorInterface.findByPrimaryKeyCache(String entityName, Map<String, ?> fields) DelegatorInterface.findByPrimaryKeyCache(GenericPK primaryKey) GenericDelegator.findByPrimaryKeyCache(String entityName, Map<String, ?> fields) Find a CACHED Generic Entity by its Primary Key.GenericDelegator.findByPrimaryKeyCache(GenericPK primaryKey) Find a cached Generic Entity by its Primary Key.LockedDatabaseGenericDelegator.findByPrimaryKeyCache(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.findByPrimaryKeyCache(GenericPK primaryKey) DelegatorInterface.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) GenericDelegator.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) Find a Generic Entity by its Primary Key and only returns the values requested by the passed keys (names).GenericHelper.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) Find a Generic Entity by its Primary Key and only returns the values requested by the passed keys (names)GenericHelperDAO.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) Find a Generic Entity by its Primary Key and only returns the values requested by the passed keys (names)LockedDatabaseGenericDelegator.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) MemoryHelper.findByPrimaryKeyPartial(GenericPK primaryKey, Set<String> keys) static GenericValueEntityUtil.getFirst(List<? extends GenericValue> values) DelegatorInterface.getFromPrimaryKeyCache(GenericPK primaryKey) GenericDelegator.getFromPrimaryKeyCache(GenericPK primaryKey) LockedDatabaseGenericDelegator.getFromPrimaryKeyCache(GenericPK primaryKey) static GenericValueEntityUtil.getOnly(List<? extends GenericValue> values) DelegatorInterface.getRelatedOne(String relationName, GenericValue value) GenericDelegator.getRelatedOne(String relationName, GenericValue value) Get related entity where relation is of type one, uses findByPrimaryKey.GenericValue.getRelatedOne(String relationName) Get the named Related Entity for the GenericValue from the persistent storeLockedDatabaseGenericDelegator.getRelatedOne(String relationName, GenericValue value) DelegatorInterface.getRelatedOneCache(String relationName, GenericValue value) GenericDelegator.getRelatedOneCache(String relationName, GenericValue value) Get related entity where relation is of type one, uses findByPrimaryKey, checking first in the cache to see if the desired value is there.GenericValue.getRelatedOneCache(String relationName) Get the named Related Entity for the GenericValue from the persistent store, looking first in the global generic cache (for the moment this isn't true, is same as EmbeddedCache variant)LockedDatabaseGenericDelegator.getRelatedOneCache(String relationName, GenericValue value) GenericValue.getRelatedOneEmbeddedCache(String relationName) Get the named Related Entity for the GenericValue from the persistent store, looking first in a cache associated with this entity which is destroyed with this ValueObject when no longer used.Creates a Entity in the form of a GenericValue without persisting it.EntityListIterator.next()Moves the cursor to the next position and returns the GenericValue object for that position; if there is no next, returns nullEntityListIterator.previous()Moves the cursor to the previous position and returns the GenericValue object for that position; if there is no previous, returns nullMethods in org.ofbiz.core.entity that return types with arguments of type GenericValueModifier and TypeMethodDescriptionFinds all Generic entities of the given type.Finds all Generic entities of the given type, optionally sorted.DelegatorInterface.findAllByPrimaryKeys(Collection<? extends GenericPK> primaryKeys) GenericDelegator.findAllByPrimaryKeys(Collection<? extends GenericPK> primaryKeys) Find a number of Generic Value objects by their Primary Keys, all at once.GenericHelper.findAllByPrimaryKeys(List<? extends GenericPK> primaryKeys) Find a number of Generic Value objects by their Primary Keys, all at onceGenericHelperDAO.findAllByPrimaryKeys(List<? extends GenericPK> primaryKeys) Find a number of Generic Value objects by their Primary Keys, all at once This is done here for the DAO GenericHelper; for a client-server helper it would be done on the server side to reduce network round trips.LockedDatabaseGenericDelegator.findAllByPrimaryKeys(Collection<? extends GenericPK> primaryKeys) MemoryHelper.findAllByPrimaryKeys(List<? extends GenericPK> primaryKeys) DelegatorInterface.findAllByPrimaryKeysCache(Collection<? extends GenericPK> primaryKeys) GenericDelegator.findAllByPrimaryKeysCache(Collection<? extends GenericPK> primaryKeys) Find a number of Generic Value objects by their Primary Keys, all at once; this first looks in the local cache for each PK and if there then it puts it in the return list rather than putting it in the batch to send to a given helper.LockedDatabaseGenericDelegator.findAllByPrimaryKeysCache(Collection<? extends GenericPK> primaryKeys) DelegatorInterface.findAllCache(String entityName) DelegatorInterface.findAllCache(String entityName, List<String> orderBy) GenericDelegator.findAllCache(String entityName) Finds all Generic entities of the given type, looking first in the cache.GenericDelegator.findAllCache(String entityName, List<String> orderBy) Finds all Generic entities, looking first in the cache; uses orderBy for lookup, but only keys results on the entityName and fields.LockedDatabaseGenericDelegator.findAllCache(String entityName) LockedDatabaseGenericDelegator.findAllCache(String entityName, List<String> orderBy) DelegatorInterface.findByAnd(String entityName, List<? extends EntityCondition> expressions) DelegatorInterface.findByAnd(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) GenericDelegator.findByAnd(String entityName, List<? extends EntityCondition> expressions) Finds Generic Entity records by all of the specified expressions (ie: combined using AND).GenericDelegator.findByAnd(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) Finds Generic Entity records by all of the specified expressions (i.e.Finds Generic Entity records by all of the specified fields (ie: combined using AND).Finds Generic Entity records by all of the specified fields (i.e.Finds any entities matching the given criteria.Finds Generic Entity records by all of the specified fields (ie: combined using AND)Finds Generic Entity records by all of the specified fields (ie: combined using AND)LockedDatabaseGenericDelegator.findByAnd(String entityName, List<? extends EntityCondition> expressions) LockedDatabaseGenericDelegator.findByAnd(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) LockedDatabaseGenericDelegator.findByAnd(String entityName, Map<String, ?> fields, List<String> orderBy) LockedDatabaseGenericDelegator.findByAnd(ModelEntity modelEntity, Map<String, ?> fields, List<String> orderBy) MemoryHelper.findByAnd(ModelEntity modelEntity, List<? extends EntityCondition> expressions, List<String> orderBy) DelegatorInterface.findByAndCache(String entityName, Map<String, ?> fields) GenericDelegator.findByAndCache(String entityName, Map<String, ?> fields) Finds Generic Entity records by all of the specified fields (i.e.Finds Generic Entity records by all of the specified fields (i.e.LockedDatabaseGenericDelegator.findByAndCache(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.findByAndCache(String entityName, Map<String, ?> fields, List<String> orderBy) DelegatorInterface.findByCondition(String entityName, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) GenericDelegator.findByCondition(String entityName, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) Finds any GenericValues matching the given conditions.GenericHelper.findByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) Finds GenericValues by the conditions specified in the EntityCondition object, the the EntityCondition javadoc for more details.GenericHelperDAO.findByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) Finds GenericValues by the conditions specified in the EntityCondition object, the the EntityCondition javadoc for more details.LockedDatabaseGenericDelegator.findByCondition(String entityName, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) MemoryHelper.findByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) DelegatorInterface.findByLike(String entityName, Map<String, ?> fields) GenericDelegator.findByLike(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.findByLike(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.findByLike(String entityName, Map<String, ?> fields, List<String> orderBy) MemoryHelper.findByLike(ModelEntity modelEntity, Map<String, ?> fields, List<String> orderBy) GenericHelper.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) GenericHelperDAO.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) MemoryHelper.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) DelegatorInterface.findByOr(String entityName, List<? extends EntityCondition> expressions) DelegatorInterface.findByOr(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) GenericDelegator.findByOr(String entityName, List<? extends EntityCondition> expressions) Finds Generic Entity records by all of the specified expressions (i.e.GenericDelegator.findByOr(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) Finds Generic Entity records by all of the specified expressions (i.e.Finds Generic Entity records by any of the specified fields (i.e.Finds Generic Entity records by all of the specified fields (i.e.Finds Generic Entity records by all of the specified fields (ie: combined using OR)Finds Generic Entity records by all of the specified fields (ie: combined using OR)LockedDatabaseGenericDelegator.findByOr(String entityName, List<? extends EntityCondition> expressions) LockedDatabaseGenericDelegator.findByOr(String entityName, List<? extends EntityCondition> expressions, List<String> orderBy) LockedDatabaseGenericDelegator.findByOr(String entityName, Map<String, ?> fields, List<String> orderBy) MemoryHelper.findByOr(ModelEntity modelEntity, List<? extends EntityCondition> expressions, List<String> orderBy) DelegatorInterface.getAllCache()GenericDelegator.getAllCache()LockedDatabaseGenericDelegator.getAllCache()DelegatorInterface.getAndCache()GenericDelegator.getAndCache()LockedDatabaseGenericDelegator.getAndCache()EntityListIterator.getCompleteList()static List<GenericValue>EntityTypeUtil.getDescendantTypes(GenericValue typeValue) DelegatorInterface.getFromAllCache(String entityName) GenericDelegator.getFromAllCache(String entityName) LockedDatabaseGenericDelegator.getFromAllCache(String entityName) DelegatorInterface.getFromAndCache(String entityName, Map<String, ?> fields) DelegatorInterface.getFromAndCache(ModelEntity entity, Map<String, ?> fields) GenericDelegator.getFromAndCache(String entityName, Map<String, ?> fields) GenericDelegator.getFromAndCache(ModelEntity entity, Map<String, ?> fields) LockedDatabaseGenericDelegator.getFromAndCache(String entityName, Map<String, ?> fields) LockedDatabaseGenericDelegator.getFromAndCache(ModelEntity entity, Map<String, ?> fields) DelegatorInterface.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) DelegatorInterface.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) GenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) Get the named Related Entity for the GenericValue from the persistent store across another Relation.GenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store across another Relation.LockedDatabaseGenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) LockedDatabaseGenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) EntityListIterator.getPartialList(int start, int number) Gets a partial list of results starting at start and containing at most number elements.DelegatorInterface.getPrimaryKeyCache()GenericDelegator.getPrimaryKeyCache()LockedDatabaseGenericDelegator.getPrimaryKeyCache()DelegatorInterface.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) DelegatorInterface.getRelated(String relationName, GenericValue value) static List<GenericValue>EntityUtil.getRelated(String relationName, List<? extends GenericValue> values) GenericDelegator.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.GenericDelegator.getRelated(String relationName, GenericValue value) Get the named Related Entity for the GenericValue from the persistent storeGenericValue.getRelated(String relationName) Get the named Related Entity for the GenericValue from the persistent storeGet the named Related Entity for the GenericValue from the persistent storeLockedDatabaseGenericDelegator.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) LockedDatabaseGenericDelegator.getRelated(String relationName, GenericValue value) DelegatorInterface.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) static List<GenericValue>EntityUtil.getRelatedByAnd(String relationName, Map<String, ?> fields, List<? extends GenericValue> values) GenericDelegator.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.GenericValue.getRelatedByAnd(String relationName, Map<String, ?> fields) Get the named Related Entity for the GenericValue from the persistent store and filter itLockedDatabaseGenericDelegator.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) GenericValue.getRelatedByAndCache(String relationName, Map<String, ?> fields) Get the named Related Entity for the GenericValue from the persistent store and filter it, looking first in the global generic cache (for the moment this isn't true, is same as EmbeddedCache variant)GenericValue.getRelatedByAndEmbeddedCache(String relationName, Map<String, ?> fields) Get the named Related Entity for the GenericValue from the persistent store and filter it, looking first in a cache associated with this entity which is destroyed with this ValueObject when no longer used.DelegatorInterface.getRelatedCache(String relationName, GenericValue value) static List<GenericValue>EntityUtil.getRelatedCache(String relationName, List<? extends GenericValue> values) GenericDelegator.getRelatedCache(String relationName, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store, checking first in the cache to see if the desired value is there.GenericValue.getRelatedCache(String relationName) Get the named Related Entity for the GenericValue from the persistent store, looking first in the global generic cache (for the moment this isn't true, is same as EmbeddedCache variant)Get the named Related Entity for the GenericValue from the persistent store, looking first in the global generic cache (for the moment this isn't true, is same as EmbeddedCache variant)LockedDatabaseGenericDelegator.getRelatedCache(String relationName, GenericValue value) GenericValue.getRelatedEmbeddedCache(String relationName) Get the named Related Entity for the GenericValue from the persistent store, looking first in a cache associated with this entity which is destroyed with this ValueObject when no longer used.GenericValue.getRelatedEmbeddedCache(String relationName, Map<String, ?> byAndFields, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store, looking first in a cache associated with this entity which is destroyed with this ValueObject when no longer used.GenericValue.getRelatedMulti(String relationNameOne, String relationNameTwo) Get the named Related Entity for the GenericValue from the persistent store across another Relation.GenericValue.getRelatedMulti(String relationNameOne, String relationNameTwo, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store across another Relation.DelegatorInterface.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) GenericDelegator.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.GenericValue.getRelatedOrderBy(String relationName, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store and order itLockedDatabaseGenericDelegator.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) GenericValue.getRelatedOrderByCache(String relationName, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store and order it, looking first in the global generic cache (for the moment this isn't true, is same as EmbeddedCache variant)GenericValue.getRelatedOrderByEmbeddedCache(String relationName, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store and order it, looking first in a cache associated with this entity which is destroyed with this ValueObject when no longer used.GenericDelegator.makeValues(Document document) Parses the given XML document for entities.LockedDatabaseGenericDelegator.makeValues(Document document) GenericDelegator.readXmlDocument(URL url) Parses the given XML file for entities.LockedDatabaseGenericDelegator.readXmlDocument(URL url) GenericDAO.selectByAnd(ModelEntity modelEntity, Map<String, ?> fields, List<String> orderBy) GenericDAO.selectByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) Finds GenericValues by the conditions specified in the EntityCondition object, see the EntityCondition javadoc for more details.GenericDAO.selectByCondition(ModelEntity modelEntity, EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy, EntityFindOptions findOptions) Finds GenericValues by the conditions specified in the EntityCondition object, see the EntityCondition javadoc for more details.GenericDAO.selectByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) GenericDAO.selectByOr(ModelEntity modelEntity, Map<String, ?> fields, List<String> orderBy) DelegatorInterface.transform(String entityName, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) Applies the given transformation to any entities matching the given condition.GenericDAO.transform(ModelEntity modelEntity, EntityCondition entityCondition, List<String> orderBy, String lockFieldName, Transformation transformation) Applies the given transformation to any entities matching the given condition, by performing a SELECT followed by an UPDATE.GenericDelegator.transform(String entityName, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) GenericHelper.transform(ModelEntity modelEntity, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) Applies the given transformation to any entities matching the given condition.GenericHelperDAO.transform(ModelEntity modelEntity, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) LockedDatabaseGenericDelegator.transform(String entityName, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) MemoryHelper.transform(ModelEntity modelEntity, EntityCondition entityCondition, List<String> orderBy, String lockField, Transformation transformation) Methods in org.ofbiz.core.entity with parameters of type GenericValueModifier and TypeMethodDescriptionvoidEntityListIterator.add(GenericValue obj) voidDelegatorInterface.clearCacheLine(GenericValue value) voidDelegatorInterface.clearCacheLine(GenericValue value, boolean distribute) voidGenericDelegator.clearCacheLine(GenericValue value) Remove a CACHED GenericValue from as many caches as it can.voidGenericDelegator.clearCacheLine(GenericValue value, boolean distribute) voidLockedDatabaseGenericDelegator.clearCacheLine(GenericValue value) voidLockedDatabaseGenericDelegator.clearCacheLine(GenericValue value, boolean distribute) DelegatorInterface.create(GenericValue value) DelegatorInterface.create(GenericValue value, boolean doCacheClear) GenericDelegator.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the datasource.GenericDelegator.create(GenericValue value, boolean doCacheClear) Creates a Entity in the form of a GenericValue and write it to the datasource.GenericHelper.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the databaseGenericHelperDAO.create(GenericValue value) Creates a Entity in the form of a GenericValue and write it to the databaseLockedDatabaseGenericDelegator.create(GenericValue value) LockedDatabaseGenericDelegator.create(GenericValue value, boolean doCacheClear) MemoryHelper.create(GenericValue value) voidDistributedCacheClear.distributedClearCacheLine(GenericValue value) GenericHelper.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) GenericHelperDAO.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) MemoryHelper.findByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) static List<GenericValue>EntityTypeUtil.getDescendantTypes(GenericValue typeValue) DelegatorInterface.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) DelegatorInterface.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) GenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) Get the named Related Entity for the GenericValue from the persistent store across another Relation.GenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) Get the named Related Entity for the GenericValue from the persistent store across another Relation.LockedDatabaseGenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo) LockedDatabaseGenericDelegator.getMultiRelation(GenericValue value, String relationNameOne, String relationNameTwo, List<String> orderBy) DelegatorInterface.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) DelegatorInterface.getRelated(String relationName, GenericValue value) GenericDelegator.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.GenericDelegator.getRelated(String relationName, GenericValue value) Get the named Related Entity for the GenericValue from the persistent storeLockedDatabaseGenericDelegator.getRelated(String relationName, Map<String, ?> byAndFields, List<String> orderBy, GenericValue value) LockedDatabaseGenericDelegator.getRelated(String relationName, GenericValue value) DelegatorInterface.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) GenericDelegator.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.LockedDatabaseGenericDelegator.getRelatedByAnd(String relationName, Map<String, ?> byAndFields, GenericValue value) DelegatorInterface.getRelatedCache(String relationName, GenericValue value) GenericDelegator.getRelatedCache(String relationName, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store, checking first in the cache to see if the desired value is there.LockedDatabaseGenericDelegator.getRelatedCache(String relationName, GenericValue value) DelegatorInterface.getRelatedDummyPK(String relationName, Map<String, ?> byAndFields, GenericValue value) GenericDelegator.getRelatedDummyPK(String relationName, Map<String, ?> byAndFields, GenericValue value) Get a dummy primary key for the named Related Entity for the GenericValue.LockedDatabaseGenericDelegator.getRelatedDummyPK(String relationName, Map<String, ?> byAndFields, GenericValue value) DelegatorInterface.getRelatedOne(String relationName, GenericValue value) GenericDelegator.getRelatedOne(String relationName, GenericValue value) Get related entity where relation is of type one, uses findByPrimaryKey.LockedDatabaseGenericDelegator.getRelatedOne(String relationName, GenericValue value) DelegatorInterface.getRelatedOneCache(String relationName, GenericValue value) GenericDelegator.getRelatedOneCache(String relationName, GenericValue value) Get related entity where relation is of type one, uses findByPrimaryKey, checking first in the cache to see if the desired value is there.LockedDatabaseGenericDelegator.getRelatedOneCache(String relationName, GenericValue value) DelegatorInterface.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) GenericDelegator.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) Get the named Related Entity for the GenericValue from the persistent store.LockedDatabaseGenericDelegator.getRelatedOrderBy(String relationName, List<String> orderBy, GenericValue value) static booleanEntityTypeUtil.isType(Collection<GenericValue> thisCollection, String typeRelation, GenericValue targetType) static booleanEntityTypeUtil.isType(GenericValue thisType, GenericValue targetType) Check if thisType is the type of targetTypevoidDelegatorInterface.putInPrimaryKeyCache(GenericPK primaryKey, GenericValue value) voidGenericDelegator.putInPrimaryKeyCache(GenericPK primaryKey, GenericValue value) voidLockedDatabaseGenericDelegator.putInPrimaryKeyCache(GenericPK primaryKey, GenericValue value) voidDelegatorInterface.refresh(GenericValue value) voidDelegatorInterface.refresh(GenericValue value, boolean doCacheClear) voidGenericDelegator.refresh(GenericValue value) Refresh the Entity for the GenericValue from the persistent store.voidGenericDelegator.refresh(GenericValue value, boolean doCacheClear) Refresh the Entity for the GenericValue from the persistent store.voidLockedDatabaseGenericDelegator.refresh(GenericValue value) voidLockedDatabaseGenericDelegator.refresh(GenericValue value, boolean doCacheClear) intDelegatorInterface.removeRelated(String relationName, GenericValue value) intDelegatorInterface.removeRelated(String relationName, GenericValue value, boolean doCacheClear) intGenericDelegator.removeRelated(String relationName, GenericValue value) Remove the named Related Entity for the GenericValue from the persistent store.intGenericDelegator.removeRelated(String relationName, GenericValue value, boolean doCacheClear) Remove the named Related Entity for the GenericValue from the persistent store.intLockedDatabaseGenericDelegator.removeRelated(String relationName, GenericValue value) intLockedDatabaseGenericDelegator.removeRelated(String relationName, GenericValue value, boolean doCacheClear) intDelegatorInterface.removeValue(GenericValue value) intDelegatorInterface.removeValue(GenericValue value, boolean doCacheClear) intGenericDelegator.removeValue(GenericValue value) Remove a Generic Value from the database.intGenericDelegator.removeValue(GenericValue value, boolean doCacheClear) Remove a Generic Value from the database.intLockedDatabaseGenericDelegator.removeValue(GenericValue value) intLockedDatabaseGenericDelegator.removeValue(GenericValue value, boolean doCacheClear) GenericDAO.selectByMultiRelation(GenericValue value, ModelRelation modelRelationOne, ModelEntity modelEntityOne, ModelRelation modelRelationTwo, ModelEntity modelEntityTwo, List<String> orderBy) voidEntityListIterator.set(GenericValue obj) intDelegatorInterface.store(GenericValue value) intDelegatorInterface.store(GenericValue value, boolean doCacheClear) intGenericDelegator.store(GenericValue value) Store the Entity from the GenericValue to the persistent store.intGenericDelegator.store(GenericValue value, boolean doCacheClear) Store the Entity from the GenericValue to the persistent store.intGenericHelper.store(GenericValue value) Store the Entity from the GenericValue to the persistent storeintGenericHelperDAO.store(GenericValue value) Store the Entity from the GenericValue to the persistent storeintLockedDatabaseGenericDelegator.store(GenericValue value) intLockedDatabaseGenericDelegator.store(GenericValue value, boolean doCacheClear) intMemoryHelper.store(GenericValue value) voidTransformation.transform(GenericValue entity) Transforms the given entity in place.Method parameters in org.ofbiz.core.entity with type arguments of type GenericValueModifier and TypeMethodDescriptionstatic intGenericEntity.addToXmlDocument(Collection<GenericValue> values, Document document) voidDelegatorInterface.clearAllCacheLinesByValue(Collection<? extends GenericValue> values) voidGenericDelegator.clearAllCacheLinesByValue(Collection<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.clearAllCacheLinesByValue(Collection<? extends GenericValue> values) static GenericValueEntityUtil.getFirst(List<? extends GenericValue> values) static GenericValueEntityUtil.getOnly(List<? extends GenericValue> values) static List<GenericValue>EntityUtil.getRelated(String relationName, List<? extends GenericValue> values) static List<GenericValue>EntityUtil.getRelatedByAnd(String relationName, Map<String, ?> fields, List<? extends GenericValue> values) static List<GenericValue>EntityUtil.getRelatedCache(String relationName, List<? extends GenericValue> values) static booleanEntityTypeUtil.isType(Collection<GenericValue> thisCollection, String typeRelation, GenericValue targetType) static DocumentGenericEntity.makeXmlDocument(Collection<GenericValue> values) voidDelegatorInterface.putAllInPrimaryKeyCache(List<? extends GenericValue> values) voidGenericDelegator.putAllInPrimaryKeyCache(List<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.putAllInPrimaryKeyCache(List<? extends GenericValue> values) voidDelegatorInterface.putInAllCache(String entityName, List<? extends GenericValue> values) voidDelegatorInterface.putInAllCache(ModelEntity entity, List<? extends GenericValue> values) voidGenericDelegator.putInAllCache(String entityName, List<? extends GenericValue> values) voidGenericDelegator.putInAllCache(ModelEntity entity, List<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.putInAllCache(String entityName, List<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.putInAllCache(ModelEntity entity, List<? extends GenericValue> values) voidDelegatorInterface.putInAndCache(String entityName, Map<String, ?> fields, List<? extends GenericValue> values) voidDelegatorInterface.putInAndCache(ModelEntity entity, Map<String, ?> fields, List<? extends GenericValue> values) voidGenericDelegator.putInAndCache(String entityName, Map<String, ?> fields, List<? extends GenericValue> values) voidGenericDelegator.putInAndCache(ModelEntity entity, Map<String, ?> fields, List<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.putInAndCache(String entityName, Map<String, ?> fields, List<? extends GenericValue> values) voidLockedDatabaseGenericDelegator.putInAndCache(ModelEntity entity, Map<String, ?> fields, List<? extends GenericValue> values) intDelegatorInterface.storeAll(List<? extends GenericValue> values) intDelegatorInterface.storeAll(List<? extends GenericValue> values, boolean doCacheClear) intGenericDelegator.storeAll(List<? extends GenericValue> values) Store the Entities from the List GenericValue instances to the persistent store.intGenericDelegator.storeAll(List<? extends GenericValue> values, boolean doCacheClear) Store the Entities from the List GenericValue instances to the persistent store.intGenericHelper.storeAll(List<? extends GenericValue> values) Store the Entities from the List GenericValue instances to the persistent store.intGenericHelperDAO.storeAll(List<? extends GenericValue> values) Store the Entities from the List GenericValue instances to the persistent store.intLockedDatabaseGenericDelegator.storeAll(List<? extends GenericValue> values) intLockedDatabaseGenericDelegator.storeAll(List<? extends GenericValue> values, boolean doCacheClear) intMemoryHelper.storeAll(List<? extends GenericValue> values) Constructors in org.ofbiz.core.entity with parameters of type GenericValueModifierConstructorDescriptionGenericValue(GenericValue value) Creates new GenericValue from existing GenericValue -
Uses of GenericValue in org.ofbiz.core.entity.comparator
Methods in org.ofbiz.core.entity.comparator with parameters of type GenericValueModifier and TypeMethodDescriptionintOFBizDateComparator.compare(GenericValue o1, GenericValue o2) intOFBizFieldComparator.compare(GenericValue o1, GenericValue o2) -
Uses of GenericValue in org.ofbiz.core.entity.jdbc
Methods in org.ofbiz.core.entity.jdbc with parameters of type GenericValueModifier and TypeMethodDescriptionstatic voidSqlJdbcUtil.setValuesWhereClause(SQLProcessor sqlP, List<ModelField> list, GenericValue dummyValue, ModelFieldTypeReader modelFieldTypeReader) The elements (ModelFields) of the list are bound to an SQL statement (SQL-Processor), but values must not be null.