Uses of Class
org.ofbiz.core.entity.model.ModelField
Packages that use ModelField
-
Uses of ModelField in org.ofbiz.core.entity
Fields in org.ofbiz.core.entity declared as ModelFieldFields in org.ofbiz.core.entity with type parameters of type ModelFieldMethods in org.ofbiz.core.entity that return ModelFieldMethods in org.ofbiz.core.entity with parameters of type ModelFieldModifier and TypeMethodDescriptionGenericEntity.dangerousGetNoCheckButFast(ModelField modelField) voidGenericEntity.dangerousSetNoCheckButFast(ModelField modelField, Object value) Method parameters in org.ofbiz.core.entity with type arguments of type ModelFieldModifier and TypeMethodDescriptionLimitHelper.addLimitClause(String sql, List<ModelField> selectFields, int offset, int maxResults, SqlEscapeHelper sqlEscapeHelper) LimitHelper.addLimitClause(String sql, List<ModelField> selectFields, int maxResults, SqlEscapeHelper sqlEscapeHelper) Constructors in org.ofbiz.core.entity with parameters of type ModelFieldConstructor parameters in org.ofbiz.core.entity with type arguments of type ModelFieldModifierConstructorDescriptionEntityListIterator(SQLProcessor sqlp, ModelEntity modelEntity, List<ModelField> selectFields, ModelFieldTypeReader modelFieldTypeReader) -
Uses of ModelField in org.ofbiz.core.entity.jdbc
Methods in org.ofbiz.core.entity.jdbc with parameters of type ModelFieldModifier and TypeMethodDescriptionDatabaseUtil.addColumn(ModelEntity entity, ModelField field) static voidSqlJdbcUtil.getValue(ResultSet rs, int ind, ModelField curField, GenericEntity entity, ModelFieldTypeReader modelFieldTypeReader) static voidSqlJdbcUtil.setValue(SQLProcessor sqlP, ModelField modelField, String entityName, Object fieldValue, ModelFieldTypeReader modelFieldTypeReader) static voidSqlJdbcUtil.setValue(SQLProcessor sqlP, ModelField modelField, GenericEntity entity, ModelFieldTypeReader modelFieldTypeReader) Method parameters in org.ofbiz.core.entity.jdbc with type arguments of type ModelFieldModifier and TypeMethodDescriptionstatic intSqlJdbcUtil.countWhereStringParametersFromFields(List<ModelField> modelFields, Map<String, ?> fieldValues) static StringSqlJdbcUtil.makeWhereClause(ModelEntity modelEntity, List<ModelField> modelFields, Map<String, ?> fields, String operator, String joinStyle, SqlEscapeHelper sqlEscapeHelper) static StringSqlJdbcUtil.makeWhereStringFromFields(List<ModelField> modelFields, Map<String, ?> fieldValues, String operator, List<? super EntityConditionParam> entityConditionParams, SqlEscapeHelper sqlEscapeHelper) Makes a WHERE clause String with "col_name=?" if not null or "col_name IS NULL" if null, all separated by the given operator.static StringSqlJdbcUtil.makeWhereStringFromFields(List<ModelField> modelFields, Map<String, ?> fieldValues, String operator, SqlEscapeHelper sqlEscapeHelper) Makes a WHERE clause String with "col_name=?" if not null or "col_name IS NULL" if null, all separated by the given operator.static voidSqlJdbcUtil.setValues(SQLProcessor sqlP, List<ModelField> list, GenericEntity entity, ModelFieldTypeReader modelFieldTypeReader) The elements (ModelFields) of the list are bound to an SQL statement (SQL-Processor)static 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. -
Uses of ModelField in org.ofbiz.core.entity.model
Fields in org.ofbiz.core.entity.model with type parameters of type ModelFieldModifier and TypeFieldDescriptionprotected List<ModelField>ModelEntity.fieldsA List of the Field objects for the Entityprotected Map<String,ModelField> ModelEntity.fieldsMapprotected List<ModelField>ModelViewEntity.groupBysA List of the Field objects for the View Entity, one for each GROUP BY fieldprotected List<ModelField>ModelEntity.nopksA List of the Field objects for the Entity, one for each NON Primary Keyprotected List<ModelField>ModelEntity.pksA List of the Field objects for the Entity, one for each Primary KeyMethods in org.ofbiz.core.entity.model that return ModelFieldModifier and TypeMethodDescriptionModelReader.createModelField(Element fieldElement, Element docElement, Hashtable<String, String> docElementValues) ModelReader.findModelField(ModelEntity entity, String fieldName) ModelEntity.getField(int index) ModelEntity.getNopk(int index) ModelEntity.getPk(int index) ModelFunctionBasedIndex.getVirtualColumnModelField(DatabaseType dbType) ModelEntity.removeField(int index) ModelEntity.removeField(String fieldName) Methods in org.ofbiz.core.entity.model that return types with arguments of type ModelFieldModifier and TypeMethodDescriptionModelEntity.getFieldsCopy()ModelEntity.getFieldsIterator()ModelViewEntity.getGroupBysCopy()ModelEntity.getNopksCopy()ModelEntity.getNopksIterator()ModelEntity.getPksCopy()ModelEntity.getPksIterator()Methods in org.ofbiz.core.entity.model with parameters of type ModelFieldMethod parameters in org.ofbiz.core.entity.model with type arguments of type ModelFieldModifier and TypeMethodDescriptionModelEntity.classNameString(List<ModelField> flds, String separator, String afterLast, SqlEscapeHelper sqlEscapeHelper) ModelEntity.classNameString(List<ModelField> flds, SqlEscapeHelper sqlEscapeHelper) ModelEntity.colNameString(List<ModelField> flds, String separator, String afterLast, SqlEscapeHelper sqlEscapeHelper) ModelEntity.colNameString(List<ModelField> flds, SqlEscapeHelper sqlEscapeHelper) ModelEntity.fieldsStringList(List<ModelField> flds, String eachString, String separator) ModelEntity.fieldsStringList(List<ModelField> flds, String eachString, String separator, boolean appendIndex) ModelEntity.fieldsStringList(List<ModelField> flds, String eachString, String separator, boolean appendIndex, boolean onlyNonPK) ModelEntity.finderQueryString(List<ModelField> flds) ModelEntity.getFieldNamesFromFieldVector(List<ModelField> modelFields) ModelEntity.httpArgList(List<ModelField> flds) ModelEntity.httpArgListFromClass(List<ModelField> flds) ModelEntity.httpArgListFromClass(List<ModelField> flds, String entityNameSuffix) ModelEntity.httpRelationArgList(List<ModelField> flds, ModelRelation relation) ModelEntity.nameString(List<ModelField> flds) ModelEntity.nameString(List<ModelField> flds, String separator, String afterLast) ModelEntity.typeNameString(List<ModelField> flds) ModelEntity.typeNameStringRelatedAndMain(List<ModelField> flds, ModelRelation relation) ModelEntity.typeNameStringRelatedNoMapped(List<ModelField> flds, ModelRelation relation)