Uses of Class
overit.geocall.sql.code.criterion.Criterion
Packages that use Criterion
Package
Description
-
Uses of Criterion in overit.geocall.basic.bl.auth.da
Methods in overit.geocall.basic.bl.auth.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOApiKey.getFilterCriterion(CommandContext cc) protected CriterionDAOSecret.getFilterCriterion(CommandContext cc) protected CriterionDAOSecretValue.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocall.basic.bl.profile.da
Methods in overit.geocall.basic.bl.profile.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProfiles.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocall.basic.bl.user.da
Methods in overit.geocall.basic.bl.user.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAllUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOUsers.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocall.da
Methods in overit.geocall.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAO.getFilterCriterion(CommandContext cc) Method to extend to go to introduce the inferential rules with which to deduce the SQL automatically based on the context passed as a parameter.protected CriterionDAO0.getFilterCriterion(CommandContext cc) Deprecated.Method to extend to go to introduce the inferential rules with which to deduce the SQL automatically based on the context passed as a parameter.protected CriterionDAOSV.getFilterCriterion(CommandContext cc) protected CriterionDAO.getValuesCriterion(CommandContext cc) Method that defines theCriterionused for the different commandsprotected CriterionDAO0.getValuesCriterion(CommandContext cc) Deprecated.Method that defines theCriterionused for the different commands -
Uses of Criterion in overit.geocall.sql.code
Methods in overit.geocall.sql.code with parameters of type CriterionModifier and TypeMethodDescriptionAdds a Clause to a Fragment with a criterion that must be respected by a field given by input.Condition.addClauses(Criterion criterion, String... fieldRe) Adds a Clause to a Fragment with a criterion that must be respected by a field's array given by input.Adds a value to the value's list used in the current sql's fragment and replace the current criterion withthe new one passed by parameter.Adds a field's array to the value's list used in the current sql's fragment and replace the current criterion withthe new one passed by parameter. -
Uses of Criterion in overit.geocall.sql.code.criterion
Subclasses of Criterion in overit.geocall.sql.code.criterionModifier and TypeClassDescriptionclassThe class extendsCriterionand aims to define a clause expressed by pure sql code.classThe class extendsCriterionand aims to create a criterion's set to define how the values should be treated and what clauses must be created for specific fields.classThe class extendsCriterionand it's used to apply a specific criterion if both field and value pass the validation.classThe class extendsCriterionand aims to discard all key-values couple given by input.classThe class extendsCriterionand aims to define a specifc filter on a given string-pattern.
For example if you instantiate a filter object like this "newFilter ('AUSENAME').classThe class extendsCriterionand aims to represent the operator used in the clauses definition.
For example in the clause "NAMEFIELD = ?classThe class extendsCriterionand aims to represent the equal-null operator used in the clauses definition.
This Operation could be used like this way "NAMEFIELD = NULL".classThe class extendsCriterionand aims to represent the IN (or NOT IN) operator used in the clauses definition.
This Operation could be used like this way "NAMEFIELD IN ('VALUE1','VALUE2',....)" or "NAMEFIELD NOT IN ('VALUE1','VALUE2',....)".classThe class extendsCriterionand aims to represent the IS-NULL (or IS NOT NULL) operator used in the clauses definition.
This Operation could be used like this way "NAMEFIELD IS NOT NULL" or "NAMEFIELD IS NULL".Fields in overit.geocall.sql.code.criterion declared as CriterionModifier and TypeFieldDescriptionprotected final CriterionFilter._actionprotected final CriterionDecision._criterionprotected CriterionCriteria._onMatchprotected CriterionCriteria._otherwisestatic final CriterionCriterion.ASSIGN_NULLThis static constant defines a decision criterion for which a particular key is evaluated with the "key = NULL" clause.static final CriterionCriterion.DIFFERENTThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key !static final CriterionCriterion.DISCARDThis static constant defines a decision criterion for which a particular key is not evaluated and so discarded.static final CriterionCriterion.DISCARD_CONTROLSThis static constant defines a decision criterion for which a particular key is discarded if it matches with this^(?:F:|V:)?(?:(?!gt:|gte:|lt:|lte:|isnull:|isnotnull:|ne:|like:|in:|ni:|eq:)[a-z].*|__i|__u|__d)$regexp pattern (that is after optionalF:orV:, the key is NOT about anEDM extended attribute, is NOT about aSQL clausewhose operator is specified via a prefix or is one of the following values:__i,__u,__d).static final CriterionCriterion.DISCARD_NULLSThis static constant defines a decision criterion for which a particular key is discarded if it's associates value is null.static final CriterionCriterion.DISCARD_USELESS_COLLECTIONstatic final CriterionCriterion.DISCARD_USELESS_LIKEThis static constant defines a decision criterion for which a particular key is discarded if it's associates value matches with the useless-like set.static final CriterionCriterion.DISCARD_USELESS_SETDeprecated, for removal: This API element is subject to removal in a future version.static final CriterionCriterion.DISCARD_USELESS_STRINGThis static constant defines a decision criterion for which a particular key is discarded if it's associates value matches with the useless-string set.static final CriterionCriterion.EQUALThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key=value" clause.static final CriterionCriterion.GREATERThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key>value" clause.static final CriterionCriterion.GREATEREQUALThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key>=value" clause.static final CriterionCriterion.INThis static constant defines a decision criterion for which a key-value pair is evaluated with the IN operator like "key IN (value1,value2,value3)".static final CriterionCriterion.ISThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key IS value" clause.static final CriterionCriterion.ISNOTThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key IS NOT value" clause.static final CriterionCriterion.ISNOTNULLThis static constant defines a decision criterion for which a particular key is evaluated with the "key IS NOT NULL" clause.static final CriterionCriterion.ISNULLThis static constant defines a decision criterion for which a particular key is evaluated with the "key IS NULL" clause.static final CriterionCriterion.LESSThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key<value" clause.static final CriterionCriterion.LESSEQUALThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key<=value" clause.static final CriterionCriterion.LIKEThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key LIKE value" clause.static final CriterionCriterion.NOT_EQUALThis static constant defines a decision criterion for which a key-value pair is evaluated with the "key<>value" clause.static final CriterionCriterion.NOTINThis static constant defines a decision criterion for which a key-value pair is evaluated with the NOT IN operator like "key NOT IN (value1,value2,value3)".static final CriterionCriterion.REQUIRE_IS_DIFFERENTCriterionuseful to build a SQL clause like<field> != <value>.static final CriterionCriterion.REQUIRE_IS_EQUAL_TOCriterionuseful to build a SQL clause like<field> = <value>.static final CriterionCriterion.REQUIRE_IS_GREATER_THANCriterionuseful to build a SQL clause like<field> > <value>.static final CriterionCriterion.REQUIRE_IS_GREATER_THAN_OR_EQUAL_TOCriterionuseful to build a SQL clause like<field> >= <value>.static final CriterionCriterion.REQUIRE_IS_INCriterionuseful to build a SQL clause like<field> IN (<values>).static final CriterionCriterion.REQUIRE_IS_LESS_THANCriterionuseful to build a SQL clause like<field> < <value>.static final CriterionCriterion.REQUIRE_IS_LESS_THAN_OR_EQUAL_TOCriterionuseful to build a SQL clause like<field> <= <value>.static final CriterionCriterion.REQUIRE_IS_LIKECriterionuseful to build a SQL clause like<field> LIKE '<value>'.static final CriterionCriterion.REQUIRE_IS_NOT_INCriterionuseful to build a SQL clause like<field> NOT IN (<values>).static final CriterionCriterion.REQUIRE_IS_NOT_NULLCriterionuseful to build a SQL clause like<field> IS NOT NULL.static final CriterionCriterion.REQUIRE_IS_NULLCriterionuseful to build a SQL clause like<field> IS NULL.static final CriterionCriterion.RESET_EMPTY_SETThis static constant defines a decision criterion for which a particular key is evaluated with the "key = NULL" clause (for INSERT and UPDATE) if the value associated to the key is a useless set.static final CriterionCriterion.TAKE_EMPTY_COLLECTIONThis static constant defines a decision criterion for which a particular key is evaluated with thekey IS NULLclause if the value associated with the key is a uselessCollection.static final CriterionCriterion.TAKE_EMPTY_SETDeprecated, for removal: This API element is subject to removal in a future version.useTAKE_EMPTY_COLLECTIONinstead, an improved version that also includes subclasses ofCollection.static final CriterionCriterion.TAKE_INThis static constant defines a decision criterion for which a particular key is evaluated with the "key IN (VALUE1,VALUE2...)" clause if the value associated to the key is collection.static final CriterionCriterion.TAKE_IS_NULLThis static constant defines a decision criterion for which a particular key is evaluated with the "key IS NULL" clause, if the value associated to the key is null.static final CriterionCriterion.TAKE_LIKEThis static constant defines a decision criterion for which a particular key is evaluated with the "key LIKE value" clause if the value associated to the key matches with the usefully-like character set.Methods in overit.geocall.sql.code.criterion with parameters of type CriterionModifier and TypeMethodDescriptionIt creates a Criteria with a primary Criterion passed by parameter and a secondary Criterion which depends on the criterion passed by parameter.This method allows to add a decision criterion to the set of criteria defined by the current criteria.
It's very used to add a customized decision criterion, for example it's used in this way:
Criteria.static CriteriaCreates a new Criteria with a specific Criterion passed by parameters.Creates a new filter with a custom criterion given by input.Constructors in overit.geocall.sql.code.criterion with parameters of type CriterionModifierConstructorDescriptionThe class's constructor.The class's constructor method.The class's constructor method.Creates a newDecisionusing the provided parameters.protectedFilter(Filter.Match match, Criterion action) -
Uses of Criterion in overit.geocall.sql.code.fragment
Fields in overit.geocall.sql.code.fragment declared as CriterionModifier and TypeFieldDescriptionprotected CriterionDoubleFragment._criterionprotected CriterionFragment._criterionMethods in overit.geocall.sql.code.fragment that return CriterionModifier and TypeMethodDescriptionDoubleFragment.getCriterion(Criterion def) Gets the current set Criterion.Fragment.getCriterion(Criterion def) Gets the current set Criterion.Methods in overit.geocall.sql.code.fragment with parameters of type CriterionModifier and TypeMethodDescriptionvoidDoubleFragment.addCriterion(Criterion criterion) Adds a prioritized criterion.booleanClauseFragment.appendTo(StringBuilder sb, String header, Criterion criterion, Map<String, Object> context) booleanClausesFragment.appendTo(StringBuilder sb, String header, Criterion criterion, Map<String, Object> context) abstract booleanDoubleFragment.appendTo(StringBuilder sb1, String header1, StringBuilder sb2, String header2, Criterion criterion, Map<String, Object> context) This method is used to create the double Fragment's SQL string.booleanDoubleFragmentSequence.appendTo(StringBuilder sb1, String header1, StringBuilder sb2, String header2, Criterion criterion, Map<String, Object> context) booleanEnclosedDoubleFragment.appendTo(StringBuilder sb, String header, Criterion criterion, Map<String, Object> context) booleanEnclosedFragment.appendTo(StringBuilder sb, String header, Criterion criterion, Map<String, Object> context) abstract booleanFragment.appendTo(StringBuilder sb, String header, Criterion defaultCriterion, Map<String, Object> context) This method is used to create the Fragment's SQL string.booleanFragmentSequence.appendTo(StringBuilder sb, String header, Criterion defaultCriterion, Map<String, Object> context) booleanStillFragment.appendTo(StringBuilder sb, String header, Criterion criterion, Map<String, Object> context) booleanValueFragment.appendTo(StringBuilder sb1, String header1, StringBuilder sb2, String header2, Criterion criterion, Map<String, Object> context) booleanValuesFragment.appendTo(StringBuilder sb1, String header1, StringBuilder sb2, String header2, Criterion criterion, Map<String, Object> context) DoubleFragment.getCriterion(Criterion def) Gets the current set Criterion.Fragment.getCriterion(Criterion def) Gets the current set Criterion.voidFragment.overlapCriterion(Criterion criterion) Adds an overlapping criterion.voidDoubleFragment.replaceCriterion(Criterion criterion) Replace the oldest Criterion with a new one.voidFragment.replaceCriterion(Criterion criterion) Replace the oldest Criterion with a new one.Gets the translation, in sql string, of the fragment -
Uses of Criterion in overit.geocallapp.logger.bl.master.data
Methods in overit.geocallapp.logger.bl.master.data that return Criterion -
Uses of Criterion in overit.geocallapp.utilities.core.data
Fields in overit.geocallapp.utilities.core.data declared as Criterion -
Uses of Criterion in overit.geocallapp.utilities.core.data.criteria
Subclasses of Criterion in overit.geocallapp.utilities.core.data.criteriaModifier and TypeClassDescriptionclassCustomCriterionfor case-insensitive string comparison using UPPER() SQL function. -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.contact.data
Methods in overit.geocallapp.wfm.accounts.bl.account.contact.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccountContactSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.contact.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.contact.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.data
Methods in overit.geocallapp.wfm.accounts.bl.account.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccount.getFilterCriterion(CommandContext cc) protected CriterionDAOAccountSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.status.data
Methods in overit.geocallapp.wfm.accounts.bl.account.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccountStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.status.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.status.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccountStatusTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.account.type.data
Methods in overit.geocallapp.wfm.accounts.bl.account.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccountType.getFilterCriterion(CommandContext cc) protected CriterionDAOAccountTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.converter.data
Methods in overit.geocallapp.wfm.accounts.bl.converter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOConverterTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.accessibility.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.accessibility.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterAccessibilitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.brand.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.brand.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterBrand.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterBrandSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.converter.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.converter.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeter.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.location.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.location.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterLocationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.meterclass.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.meterclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.reading.metertype.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.reading.metertype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOReadingMeterType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.accounts.bl.meter.type.data
Methods in overit.geocallapp.wfm.accounts.bl.meter.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.agendaaffinity.data
Methods in overit.geocallapp.wfm.ai.bl.agendaaffinity.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaAffinityPrediction.getFilterCriterion(CommandContext cc) protected CriterionDAOAgendaAffinityWorkshiftsForPrediction.getFilterCriterion(CommandContext cc) protected CriterionDAOAIAgendaAffinity.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchAgendaAffinityDashboard.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.automaticmeterreading.data
Methods in overit.geocallapp.wfm.ai.bl.automaticmeterreading.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAutomaticMeterReadingMonitor.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.configuration.configurationparams.data
Methods in overit.geocallapp.wfm.ai.bl.configuration.configurationparams.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAIConfigurationParams.getFilterCriterion(CommandContext cc) protected CriterionDAOAIConfigurationParamsSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.configuration.models.data
Methods in overit.geocallapp.wfm.ai.bl.configuration.models.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOModel.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.duration.prediction
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWOTimePredictionView.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.duration.prediction.data
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.duration.prediction.support.data
Methods in overit.geocallapp.wfm.ai.bl.duration.prediction.support.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchInterventions.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.processing.history.data
Methods in overit.geocallapp.wfm.ai.bl.processing.history.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOElaborationHistory.getFilterCriterion(CommandContext cc) protected CriterionDAOModelTrainingHistory.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.teamexperience.data
Methods in overit.geocallapp.wfm.ai.bl.teamexperience.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchTeamExperience.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamExperience.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.bl.teamsuggestion.data
Methods in overit.geocallapp.wfm.ai.bl.teamsuggestion.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchTeamSuggestionOperationsAffinity.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamSuggestionMonitor.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.ai.ux.predictivepartsmanagement.data
Methods in overit.geocallapp.wfm.ai.ux.predictivepartsmanagement.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOPPMSearchMaterials.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.characteristicvalue.data
Methods in overit.geocallapp.wfm.assets.bl.characteristicvalue.data that return CriterionModifier and TypeMethodDescriptionDAOAssetCharacteristicValue.getFilterCriterion(CommandContext cc) DAOAssetCharacteristicValueSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.contact.data
Methods in overit.geocallapp.wfm.assets.bl.contact.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetContactSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.contact.type.data
Methods in overit.geocallapp.wfm.assets.bl.contact.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.data
Methods in overit.geocallapp.wfm.assets.bl.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAsset.getFilterCriterion(CommandContext cc) protected CriterionDAOAssetSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.operationcenter.data
Methods in overit.geocallapp.wfm.assets.bl.operationcenter.data that return CriterionModifier and TypeMethodDescriptionDAOAssetOperationCenterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.status.data
Methods in overit.geocallapp.wfm.assets.bl.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.status.type.data
Methods in overit.geocallapp.wfm.assets.bl.status.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetStatusTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.type.admittedstatus.data
Methods in overit.geocallapp.wfm.assets.bl.type.admittedstatus.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeAdmittedStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.type.data
Methods in overit.geocallapp.wfm.assets.bl.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetType.getFilterCriterion(CommandContext cc) protected CriterionDAOAssetTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.type.operationcenter.data
Methods in overit.geocallapp.wfm.assets.bl.type.operationcenter.data that return CriterionModifier and TypeMethodDescriptionDAOAssetTypeOperationCenterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.type.template.characteristic.data
Methods in overit.geocallapp.wfm.assets.bl.type.template.characteristic.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeTemplateCharacteristicSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.assets.bl.type.template.data
Methods in overit.geocallapp.wfm.assets.bl.type.template.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAssetTypeTemplateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.bundleRequirement.data
Methods in overit.geocallapp.wfm.bundler.bl.bundleRequirement.data that return CriterionModifier and TypeMethodDescriptionDAOBundleRequirementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.bundleRequirement.migration.data
Methods in overit.geocallapp.wfm.bundler.bl.bundleRequirement.migration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOBundleExtractRequirements.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.configuration.bundling.ordering.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.ordering.data that return CriterionModifier and TypeMethodDescriptionDAOBundleOperationOrdering.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.header.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.header.data that return CriterionModifier and TypeMethodDescriptionDAOBundlingRuleHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.ordering.data
Methods in overit.geocallapp.wfm.bundler.bl.configuration.bundling.rule.ordering.data that return CriterionModifier and TypeMethodDescriptionDAOBundlingRuleOrderingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.header.data
Methods in overit.geocallapp.wfm.bundler.bl.header.data that return CriterionModifier and TypeMethodDescriptionDAOBundleHeader.getFilterCriterion(CommandContext cc) DAOBundleHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.bundler.bl.operation.data
Methods in overit.geocallapp.wfm.bundler.bl.operation.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.availability.type.data
Methods in overit.geocallapp.wfm.calendars.bl.availability.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAvailabilityTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShift.getFilterCriterion(CommandContext cc) DAOWorkShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.data that return CriterionModifier and TypeMethodDescriptionDAOWorkShiftExceptionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.exceptionclass.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionClassTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.impact.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.impact.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionImpactSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.management.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.management.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionManagementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.exception.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.exception.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftExceptionTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.type.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.type.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.type.typeclass.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.type.typeclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShiftTypeClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.calendars.bl.workshift.workshiftexceptionworkshift.data
Methods in overit.geocallapp.wfm.calendars.bl.workshift.workshiftexceptionworkshift.data that return CriterionModifier and TypeMethodDescriptionDAOWorkShiftExceptionWorkShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.catalogs.bl.catalogcode.data
Methods in overit.geocallapp.wfm.catalogs.bl.catalogcode.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCatalogCodeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.catalogs.bl.cataloggroup.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCatalogGroupSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.data that return CriterionModifier and TypeMethodDescriptionDAOCatalogGroupTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.entitytype.data
Methods in overit.geocallapp.wfm.catalogs.bl.cataloggroup.type.entitytype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCatalogGroupEntityTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.cee.bl.da
Methods in overit.geocallapp.wfm.cee.bl.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOPlannedIntervention.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.cee.bl.survey.da
Methods in overit.geocallapp.wfm.cee.bl.survey.da that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.cee.bl.vcappointment.da
Methods in overit.geocallapp.wfm.cee.bl.vcappointment.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchVCAppointment.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.characteristicclass.data
Methods in overit.geocallapp.wfm.characteristics.bl.characteristicclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.characteristicclass.type.data
Methods in overit.geocallapp.wfm.characteristics.bl.characteristicclass.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicClassTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.data
Methods in overit.geocallapp.wfm.characteristics.bl.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.usage.data
Methods in overit.geocallapp.wfm.characteristics.bl.usage.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCharacteristicUsageSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.valuedomain.data
Methods in overit.geocallapp.wfm.characteristics.bl.valuedomain.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOValueDomainSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.characteristics.bl.valuedomain.item.data
Methods in overit.geocallapp.wfm.characteristics.bl.valuedomain.item.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOValueDomainItemSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.datatype.data
Methods in overit.geocallapp.wfm.core.bl.base.datatype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.externalsystem.data
Methods in overit.geocallapp.wfm.core.bl.base.externalsystem.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOExternalSystemSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.measureunit.data
Methods in overit.geocallapp.wfm.core.bl.base.measureunit.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeasurementUnitSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.operationcenter.address.data
Methods in overit.geocallapp.wfm.core.bl.base.operationcenter.address.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterAddressSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.operationcenter.data
Methods in overit.geocallapp.wfm.core.bl.base.operationcenter.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.structure.data
Methods in overit.geocallapp.wfm.core.bl.base.structure.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchStructure.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.teamcardinality.data
Methods in overit.geocallapp.wfm.core.bl.base.teamcardinality.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamCardinality.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.workcenter.data
Methods in overit.geocallapp.wfm.core.bl.base.workcenter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkCenter.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkCenterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.base.zone.data
Methods in overit.geocallapp.wfm.core.bl.base.zone.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchZone.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.bundler.bundling.data
Methods in overit.geocallapp.wfm.core.bl.bundler.bundling.data that return CriterionModifier and TypeMethodDescriptionDAOBundleWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.bundler.data
Methods in overit.geocallapp.wfm.core.bl.bundler.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.address.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.address.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.allocate.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.allocate.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAllocateTechnicianSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.draft.data that return CriterionModifier and TypeMethodDescriptionDAOCrewShellDraftCompositionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.composition.mismatch.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.composition.mismatch.data that return CriterionModifier and TypeMethodDescriptionDAOCrewShellCompositionMismatchSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.dailyplan.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.dailyplan.data that return CriterionModifier and TypeMethodDescriptionDAOCrewShellDailyPlanSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.skill.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.skill.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.crewshell.user.data
Methods in overit.geocallapp.wfm.core.bl.crewshell.user.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.criticalactivity.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.data that return CriterionModifier and TypeMethodDescriptionDAOCriticalActivitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.criticalactivity.detectprocess.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.detectprocess.data that return CriterionModifier and TypeMethodDescriptionDAOCriticalActivityDetectProcessSearch.getFilterCriterion(CommandContext cc) DAOCriticalActivityDetectProcessUpdate.getFilterCriterion(CommandContext cc) DAOCriticalActivityWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.criticalactivity.rule.criterion.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.rule.criterion.data that return CriterionModifier and TypeMethodDescriptionDAOCriticalActivityRuleCriterionSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.core.bl.criticalactivity.rule.header.data
Methods in overit.geocallapp.wfm.core.bl.criticalactivity.rule.header.data that return CriterionModifier and TypeMethodDescriptionDAOCriticalActivityRuleHeaderSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.sheet.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionSheetConversionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.datacollection.converter.template.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.converter.template.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionTemplateConversionSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.core.bl.datacollection.rule.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.rule.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionTemplateWOCreationRuleUISearch.getFilterCriterion(CommandContext cc) DAOWorkCycleOperationDataCollection.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.datacollection.sheet.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.sheet.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionSheetExtendedSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.datacollection.template.data
Methods in overit.geocallapp.wfm.core.bl.datacollection.template.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionTemplateHeaderSearch.getFilterCriterion(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version.DAODataCollectionTemplateStructureReleaseSearch.getFilterCriterion(CommandContext cc) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Criterion in overit.geocallapp.wfm.core.bl.features.facilitytype.data
Methods in overit.geocallapp.wfm.core.bl.features.facilitytype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFeatureFacilityType.getFilterCriterion(CommandContext cc) protected CriterionDAOFeatureFacilityTypeSearch.getFilterCriterion(CommandContext cc) DAOSearchTeachnicalObjectFeatures.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.features.featureclass.data
Methods in overit.geocallapp.wfm.core.bl.features.featureclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFeatureClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.features.featureclasstype.data
Methods in overit.geocallapp.wfm.core.bl.features.featureclasstype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFeatureClassTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.features.usage.data
Methods in overit.geocallapp.wfm.core.bl.features.usage.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFeatureUsageSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.features.valuedomain.data
Methods in overit.geocallapp.wfm.core.bl.features.valuedomain.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFeatureValueDomainSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.loan.data
Methods in overit.geocallapp.wfm.core.bl.loan.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceLoanSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.address.data
Methods in overit.geocallapp.wfm.core.bl.location.address.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAddressSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.address.type.data
Methods in overit.geocallapp.wfm.core.bl.location.address.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAddressTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.district.data
Methods in overit.geocallapp.wfm.core.bl.location.district.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODistrictSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.microcluster.aggregate.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.aggregate.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMicroclusterAggregate.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMCAggregate.getFilterCriterion(CommandContext cc) protected CriterionDAOMicroclusterAggregate.getValuesCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.microcluster.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchMicroclusterForComposition.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMicroclusterForSchedulingAreas.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.microcluster.zone.data
Methods in overit.geocallapp.wfm.core.bl.location.microcluster.zone.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMicroclusterZone.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchMicroclusterZone.getFilterCriterion(CommandContext cc) protected CriterionDAOMicroclusterZone.getValuesCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.location.nation.data
Methods in overit.geocallapp.wfm.core.bl.location.nation.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAONationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.log.master.data
Methods in overit.geocallapp.wfm.core.bl.log.master.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.data
Methods in overit.geocallapp.wfm.core.bl.material.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.goodsgroup.data
Methods in overit.geocallapp.wfm.core.bl.material.goodsgroup.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.history.data
Methods in overit.geocallapp.wfm.core.bl.material.history.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.itemtype.data
Methods in overit.geocallapp.wfm.core.bl.material.itemtype.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.managementtype.data
Methods in overit.geocallapp.wfm.core.bl.material.managementtype.data that return CriterionModifier and TypeMethodDescriptionDAOMaterialManagementType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.materialclass.data
Methods in overit.geocallapp.wfm.core.bl.material.materialclass.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.serialized.data
Methods in overit.geocallapp.wfm.core.bl.material.serialized.data that return CriterionModifier and TypeMethodDescriptionDAOAccountedSerializedMaterialSearch.getFilterCriterion(CommandContext cc) DAOSerializedMaterial.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.serialized.model.data
Methods in overit.geocallapp.wfm.core.bl.material.serialized.model.data that return CriterionModifier and TypeMethodDescriptionDAOSerializedMaterialModelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.material.type.data
Methods in overit.geocallapp.wfm.core.bl.material.type.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.multistage.configuration.data
Methods in overit.geocallapp.wfm.core.bl.multistage.configuration.data that return CriterionModifier and TypeMethodDescriptionDAOMultistageConfiguration.getFilterCriterion(CommandContext cc) DAOMultistageConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.multistage.group.header.data
Methods in overit.geocallapp.wfm.core.bl.multistage.group.header.data that return CriterionModifier and TypeMethodDescriptionDAOMultistageGroupHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.multistage.group.operation.data
Methods in overit.geocallapp.wfm.core.bl.multistage.group.operation.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationMultistageGroup.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.multistage.violation.data
Methods in overit.geocallapp.wfm.core.bl.multistage.violation.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMultistageViolationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.notification.data
Methods in overit.geocallapp.wfm.core.bl.notification.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAONotifiableUserSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.permits.workorder.obtained.history.data
Methods in overit.geocallapp.wfm.core.bl.permits.workorder.obtained.history.data that return CriterionModifier and TypeMethodDescriptionDAOPermitObtainedHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.permits.workorder.required.history.data
Methods in overit.geocallapp.wfm.core.bl.permits.workorder.required.history.data that return CriterionModifier and TypeMethodDescriptionDAOPermitRequiredHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.bundler.data
Methods in overit.geocallapp.wfm.core.bl.schedule.bundler.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.detail.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.detail.data that return CriterionModifier and TypeMethodDescriptionDAODailyPlanOrderConfigurationDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.header.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.order.header.data that return CriterionModifier and TypeMethodDescriptionDAODailyPlanOrderConfigurationHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.tooltip.header.data
Methods in overit.geocallapp.wfm.core.bl.schedule.dailyplan.configuration.tooltip.header.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTooltipConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.history.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.history.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.resource.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.resource.data that return CriterionModifier and TypeMethodDescriptionDAOEmptyAgendaResourceDelete.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.teamresource.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.agenda.teamresource.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaExtractTeamResources.getFilterCriterion(CommandContext cc) protected CriterionDAOAgendaTeamResource.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.appointment.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.appointment.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOInterventionScheduled.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.intervention.material.agendamaterial.data
Methods in overit.geocallapp.wfm.core.bl.schedule.intervention.material.agendamaterial.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.resourceshiftagendaffinity.data
Methods in overit.geocallapp.wfm.core.bl.schedule.resourceshiftagendaffinity.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceShiftAgendaAffinity.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingUser.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchSchedulingUser.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.type.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.user.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingResourceType.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingResourceTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.workday.data
Methods in overit.geocallapp.wfm.core.bl.schedule.schedulingresource.workday.data that return CriterionModifier and TypeMethodDescriptionDAOWorkDayClosureOnFieldAgenda.getFilterCriterion(CommandContext cc) DAOWorkDayClosureScheduledAgenda.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedule.wooperation.accountedmaterial.data
Methods in overit.geocallapp.wfm.core.bl.schedule.wooperation.accountedmaterial.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationAccountedMaterialSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.schedulingproposal.detail.data
Methods in overit.geocallapp.wfm.core.bl.schedulingproposal.detail.data that return CriterionModifier and TypeMethodDescriptionDAOSchedulingProposalDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.team.data
Methods in overit.geocallapp.wfm.core.bl.team.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.team.shift.data
Methods in overit.geocallapp.wfm.core.bl.team.shift.data that return CriterionModifier and TypeMethodDescriptionDAOTeamShiftCompositionSearch.getFilterCriterion(CommandContext cc) DAOTeamShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.contact.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.contact.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOContactTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.feature.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.feature.data that return CriterionModifier and TypeMethodDescriptionDAOTechnicalObjectFeatureValue.getFilterCriterion(CommandContext cc) DAOTechnicalObjectFeatureValueSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.header.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.header.data that return CriterionModifier and TypeMethodDescriptionDAOCustomerSearch.getFilterCriterion(CommandContext cc) DAOTechnicalObject.getFilterCriterion(CommandContext cc) DAOTechnicalObjectFullSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.brand.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.brand.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterBrand.getFilterCriterion(CommandContext cc) protected CriterionDAOMeterBrandSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.convertertype.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.convertertype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOConverterTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.location.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.location.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterLocationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.meterclass.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.meterclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.meter.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.meter.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeterTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.state.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.state.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectStateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.statetype.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.statetype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectStateTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.type.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectType.getFilterCriterion(CommandContext cc) protected CriterionDAOTechnicalObjectTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.technicalobject.type.template.data
Methods in overit.geocallapp.wfm.core.bl.technicalobject.type.template.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectTypeTemplateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.timesheet.configuration.category.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.configuration.category.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTaskCategorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.timesheet.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.evententity.data
Methods in overit.geocallapp.wfm.core.bl.timesheet.timesheettask.evententity.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.bl.user.data
Methods in overit.geocallapp.wfm.core.bl.user.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCheckUser.getFilterCriterion(CommandContext cc) protected CriterionDAOLoadAllUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchUsers.getFilterCriterion(CommandContext cc) protected CriterionDAOUser.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.user.type.data
Methods in overit.geocallapp.wfm.core.bl.user.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOUserType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.header.data
Methods in overit.geocallapp.wfm.core.bl.workorder.header.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderHeader.getFilterCriterion(CommandContext cc) DAOWorkOrderHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operation.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operation.state.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.state.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationStateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operation.type.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operation.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationType.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderOperationTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operationactivity.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationactivity.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationActivity.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operationactivity.workorderoperationtype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationactivity.workorderoperationtype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationTypeActivity.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.operationtype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.operationtype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.requesttype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.requesttype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAORequestType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.servicetype.data
Methods in overit.geocallapp.wfm.core.bl.workorder.servicetype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOServiceType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.state.data
Methods in overit.geocallapp.wfm.core.bl.workorder.state.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderStateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.type.data
Methods in overit.geocallapp.wfm.core.bl.workorder.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderType.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.urgency.data
Methods in overit.geocallapp.wfm.core.bl.workorder.urgency.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderUrgencySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.workcycle.header.data
Methods in overit.geocallapp.wfm.core.bl.workorder.workcycle.header.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkCycleHeader.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workorder.workcycle.operation.data
Methods in overit.geocallapp.wfm.core.bl.workorder.workcycle.operation.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkCycleOperation.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workshift.data
Methods in overit.geocallapp.wfm.core.bl.workshift.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkShift.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workshift.exceptionrequest.data
Methods in overit.geocallapp.wfm.core.bl.workshift.exceptionrequest.data that return CriterionModifier and TypeMethodDescriptionDAOResourceShiftExceptionRequest.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workshift.oncall.data
Methods in overit.geocallapp.wfm.core.bl.workshift.oncall.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOnCallShift.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workshift.receipt.data
Methods in overit.geocallapp.wfm.core.bl.workshift.receipt.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOReceipt.getFilterCriterion(CommandContext cc) protected CriterionDAOSearchReceipt.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.bl.workshift.type.data
Methods in overit.geocallapp.wfm.core.bl.workshift.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchWorkShiftType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.ux.crewshell.scheduling.model.search.data
Methods in overit.geocallapp.wfm.core.ux.crewshell.scheduling.model.search.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.core.ux.schedule.tooltip.data
Methods in overit.geocallapp.wfm.core.ux.schedule.tooltip.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAccountedActivityTooltipData.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.core.ux.workorder.massivegeneration.data
Methods in overit.geocallapp.wfm.core.ux.workorder.massivegeneration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationsSlots.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.crewshell.bl.composition.data
Methods in overit.geocallapp.wfm.crewshell.bl.composition.data that return CriterionModifier and TypeMethodDescriptionDAOCrewShellCompositionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.crewshell.bl.data
Methods in overit.geocallapp.wfm.crewshell.bl.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.crewshell.bl.type.data
Methods in overit.geocallapp.wfm.crewshell.bl.type.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.crewshell.bl.workshift.data
Methods in overit.geocallapp.wfm.crewshell.bl.workshift.data that return CriterionModifier and TypeMethodDescriptionDAOCrewShellWorkShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.census.rule.data
Methods in overit.geocallapp.wfm.execution.bl.census.rule.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCensusRuleSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.encodednote.data
Methods in overit.geocallapp.wfm.execution.bl.encodednote.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.intervention.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.intervention.resource.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOInterventionResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.intervention.resource.hourtype.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.hourtype.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.intervention.resource.workorder.operation.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.resource.workorder.operation.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.intervention.status.data
Methods in overit.geocallapp.wfm.execution.bl.intervention.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOInterventionStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.interventiongroup.censusrule.data
Methods in overit.geocallapp.wfm.execution.bl.interventiongroup.censusrule.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOInterventionGroupCensusRuleSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.intervention.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.intervention.data that return CriterionModifier and TypeMethodDescriptionDAOInterventionOutcomeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.reason.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.reason.encodednote.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.encodednote.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOutcomeReasonEncodedNoteSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.reason.type.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.reason.type.data that return CriterionModifier and TypeMethodDescriptionDAOOutcomeReasonTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.type.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.type.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.validation.status.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.validation.status.data that return CriterionModifier and TypeMethodDescriptionDAOValidationStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcome.workorderorigin.data
Methods in overit.geocallapp.wfm.execution.bl.outcome.workorderorigin.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOutcomeWorkOrderOriginSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.execution.bl.outcomeclass.data
Methods in overit.geocallapp.wfm.execution.bl.outcomeclass.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.result.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.result.detail.data that return CriterionModifier and TypeMethodDescriptionDAOCapacityPlanningResourceResultCoverageDetailSearch.getFilterCriterion(CommandContext cc) DAOCapacityPlanningResultDetailCommittedCapacityResourceSearch.getFilterCriterion(CommandContext cc) DAOCapacityPlanningResultDetailCommittedCapacitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.data that return CriterionModifier and TypeMethodDescriptionDAOCapacityPlanningScenarioSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.scenario.detail.data that return CriterionModifier and TypeMethodDescriptionDAOCapacityPlanningScenarioDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.state.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.capacityplanning.state.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.data that return CriterionModifier and TypeMethodDescriptionDAOActivityForecastHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.detail.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityDetailDemandAndSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastActivityDetailDemandSearch.getFilterCriterion(CommandContext cc) DAOForecastActivityDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.forecastactivity.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.forecastactivity.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityGanttSearch.getFilterCriterion(CommandContext cc) DAOForecastActivitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.gantt.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.gantt.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityDetailGanttSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.importfilter.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.importfilter.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityImportFilterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.priority.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.priority.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityPrioritySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.skill.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.activity.skill.data that return CriterionModifier and TypeMethodDescriptionDAOForecastActivityByAllSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastActivitySkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.groupingconstraint.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.groupingconstraint.data that return CriterionModifier and TypeMethodDescriptionDAOForecastGroupingConstraintSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.importforecast.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.importforecast.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.data that return CriterionModifier and TypeMethodDescriptionDAOResourceForecastHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.detail.data that return CriterionModifier and TypeMethodDescriptionDAOForecastResourceDetailAvailableCapacityResourceSearch.getFilterCriterion(CommandContext cc) DAOForecastResourceDetailAvailableCapacitySearch.getFilterCriterion(CommandContext cc) DAOForecastResourceDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.forecastresource.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.forecastresource.data that return CriterionModifier and TypeMethodDescriptionDAOForecastResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.data that return CriterionModifier and TypeMethodDescriptionDAOForecastShiftModelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.detail.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.shiftmodel.detail.data that return CriterionModifier and TypeMethodDescriptionDAOForecastShiftModelDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.skill.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.resource.skill.data that return CriterionModifier and TypeMethodDescriptionDAOForecastResourceByAllSkillSearch.getFilterCriterion(CommandContext cc) DAOForecastResourceSkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.forecastcapacity.bl.forecast.state.data
Methods in overit.geocallapp.wfm.forecastcapacity.bl.forecast.state.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.gpstracking.bl.resource.position.data
Methods in overit.geocallapp.wfm.gpstracking.bl.resource.position.data that return CriterionModifier and TypeMethodDescriptionDAOResourceGPSPositionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.gpstracking.bl.resource.position.last.data
Methods in overit.geocallapp.wfm.gpstracking.bl.resource.position.last.data that return CriterionModifier and TypeMethodDescriptionDAOResourceLastGPSPositionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.importexport.material.data
Methods in overit.geocallapp.wfm.inventory.bl.importexport.material.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.central.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.central.data that return CriterionModifier and TypeMethodDescriptionDAOCentralWarehouseSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.central.operationcenter.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.central.operationcenter.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseOperationCenter.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.centralmobile.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.centralmobile.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseCentralMobileSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouse.getFilterCriterion(CommandContext cc) DAOWarehouseSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.material.availability.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.availability.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseMaterialAvailability.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.material.detail.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.detail.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseMaterialSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.material.expected.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.material.expected.data that return CriterionModifier and TypeMethodDescriptionDAOExpectedMaterialSearch.getFilterCriterion(CommandContext cc) DAOMaterialExpectedQuantity.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.materialstock.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseMaterialStockSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.mobile.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.mobile.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.operation.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.operation.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.serializedmaterial.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.serializedmaterial.data that return CriterionModifier and TypeMethodDescriptionDAOSerializedMaterialSearchByStock.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.state.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.stock.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.stock.history.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.history.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.stock.type.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.stock.type.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.transaction.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transaction.data that return CriterionModifier and TypeMethodDescriptionDAOWarehouseTransactionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.state.data
Methods in overit.geocallapp.wfm.inventory.bl.warehouse.transfer.request.state.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.address.data
Methods in overit.geocallapp.wfm.locations.bl.address.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAddressSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.address.type.data
Methods in overit.geocallapp.wfm.locations.bl.address.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAddressTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.country.data
Methods in overit.geocallapp.wfm.locations.bl.country.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCountrySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.district.data
Methods in overit.geocallapp.wfm.locations.bl.district.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODistrictSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.geocoding.status.data
Methods in overit.geocallapp.wfm.locations.bl.geocoding.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOGeocodingStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.locations.bl.municipality.data
Methods in overit.geocallapp.wfm.locations.bl.municipality.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMunicipalitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.goodsgroup.data
Methods in overit.geocallapp.wfm.materials.bl.goodsgroup.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOGoodsGroupSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.item.data
Methods in overit.geocallapp.wfm.materials.bl.item.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialItemSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.managementtype.data
Methods in overit.geocallapp.wfm.materials.bl.managementtype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialManagementTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.material.data
Methods in overit.geocallapp.wfm.materials.bl.material.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.material.history.data
Methods in overit.geocallapp.wfm.materials.bl.material.history.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.materialclass.data
Methods in overit.geocallapp.wfm.materials.bl.materialclass.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialClassSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.materials.bl.type.data
Methods in overit.geocallapp.wfm.materials.bl.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMaterialTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.counterdirection.data
Methods in overit.geocallapp.wfm.measuringelements.bl.counterdirection.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCounterDirectionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.measuringelement.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeasuringElementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.mode.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.mode.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.status.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.measure.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeasureStatus.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.measuringelements.bl.measuringelement.status.data
Methods in overit.geocallapp.wfm.measuringelements.bl.measuringelement.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeasuringElementStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.errorlog.data
Methods in overit.geocallapp.wfm.mobile.core.bl.errorlog.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.intervention.toaccept.data
Methods in overit.geocallapp.wfm.mobile.core.bl.intervention.toaccept.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMobileInterventionToAcceptSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.technicalobject.attachment.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.attachment.data that return CriterionModifier and TypeMethodDescriptionDAOMobileTechnicalObjectAttachmentsSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.technicalobject.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.data that return CriterionModifier and TypeMethodDescriptionDAOMobileTechnicalObjectSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.technicalobject.interventionshistory.data
Methods in overit.geocallapp.wfm.mobile.core.bl.technicalobject.interventionshistory.data that return CriterionModifier and TypeMethodDescriptionDAOMobileInterventionsHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.bl.workorder.data
Methods in overit.geocallapp.wfm.mobile.core.bl.workorder.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMobileNotification.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileSchedulableActivities.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileWorkOrders.getFilterCriterion(CommandContext cc) protected CriterionDAOMobileWorkOrderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobile.core.replicator.outcome.data
Methods in overit.geocallapp.wfm.mobile.core.replicator.outcome.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOutcomeReasonEncodedNote.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.optionsgroup.data
Methods in overit.geocallapp.wfm.mobileforms.bl.optionsgroup.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionOptionsGroupSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.rule.data
Methods in overit.geocallapp.wfm.mobileforms.bl.rule.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionTemplateWOCreationRuleSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.sheet.data
Methods in overit.geocallapp.wfm.mobileforms.bl.sheet.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionSheet.getFilterCriterion(CommandContext cc) DAODataCollectionSheetSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.template.header.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.header.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionTemplateHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.template.structure.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.structure.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataCollectionTemplateStructureSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.template.structure.release.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.structure.release.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionTemplateStructureReleaseSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.header.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.header.data that return CriterionModifier and TypeMethodDescriptionDAODCTemplateVisibilityRuleHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.rows.data
Methods in overit.geocallapp.wfm.mobileforms.bl.template.visibilityrules.rows.data that return CriterionModifier and TypeMethodDescriptionDAODCTemplateVisibilityRuleRowSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.mobileforms.bl.type.data
Methods in overit.geocallapp.wfm.mobileforms.bl.type.data that return CriterionModifier and TypeMethodDescriptionDAODataCollectionTypeSearch.getFilterCriterion(CommandContext cc) Returns the filter criterion. -
Uses of Criterion in overit.geocallapp.wfm.notifications.notification.da
Methods in overit.geocallapp.wfm.notifications.notification.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAONotifications.getFilterCriterion(CommandContext cc) protected CriterionDAONotifications.getSearchTimeCriterion() -
Uses of Criterion in overit.geocallapp.wfm.orchestrator.assets.bl.type.data
Methods in overit.geocallapp.wfm.orchestrator.assets.bl.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTechnicalObjectTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.address.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterAddressSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.operationcenter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationCenterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.structure.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.structure.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.structure.validityperiod.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.structure.validityperiod.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOStructureValidityPeriodSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.workcenter.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.workcenter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkCenterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.zone.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.zone.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOZoneSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.organizationalstructures.bl.zone.microcluster.data
Methods in overit.geocallapp.wfm.organizationalstructures.bl.zone.microcluster.data that return CriterionModifier and TypeMethodDescriptionDAOAddressMicroClusterZones.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.activity.da
Methods in overit.geocallapp.wfm.project.bl.activity.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchProjectActivity.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.activity.type.data
Methods in overit.geocallapp.wfm.project.bl.activity.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.calendarunit.data
Methods in overit.geocallapp.wfm.project.bl.calendarunit.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCalendarUnitSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.configuration.da
Methods in overit.geocallapp.wfm.project.bl.configuration.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchWOTypes.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.diary.da
Methods in overit.geocallapp.wfm.project.bl.diary.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchProjectDiary.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.header.da
Methods in overit.geocallapp.wfm.project.bl.header.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchProject.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.management.planning.da
Methods in overit.geocallapp.wfm.project.bl.management.planning.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectOperations.getFilterCriterion(CommandContext cc) protected CriterionDAOProjectOperationsSlots.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.profile.da
Methods in overit.geocallapp.wfm.project.bl.profile.da that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSearchProjectProfile.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.project.bl.type.data
Methods in overit.geocallapp.wfm.project.bl.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.activity.data
Methods in overit.geocallapp.wfm.projects.bl.activity.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.activity.status.data
Methods in overit.geocallapp.wfm.projects.bl.activity.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.activity.userstatus.data
Methods in overit.geocallapp.wfm.projects.bl.activity.userstatus.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityUserStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.activityrelation.type.data
Methods in overit.geocallapp.wfm.projects.bl.activityrelation.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityRelationTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.header.data
Methods in overit.geocallapp.wfm.projects.bl.header.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.profile.data
Methods in overit.geocallapp.wfm.projects.bl.profile.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectProfileSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.profile.startdate.data
Methods in overit.geocallapp.wfm.projects.bl.profile.startdate.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectActivityStartDateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.status.data
Methods in overit.geocallapp.wfm.projects.bl.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.timerangeconfiguration.data
Methods in overit.geocallapp.wfm.projects.bl.timerangeconfiguration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTimeRangeConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.projects.bl.userstatus.data
Methods in overit.geocallapp.wfm.projects.bl.userstatus.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOProjectUserStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.address.data
Methods in overit.geocallapp.wfm.resources.bl.resource.address.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceAddressSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.data
Methods in overit.geocallapp.wfm.resources.bl.resource.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.management.data
Methods in overit.geocallapp.wfm.resources.bl.resource.management.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceManagementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.qualification.data
Methods in overit.geocallapp.wfm.resources.bl.resource.qualification.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceQualificationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.skill.data
Methods in overit.geocallapp.wfm.resources.bl.resource.skill.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceSkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.resources.bl.resource.type.data
Methods in overit.geocallapp.wfm.resources.bl.resource.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOResourceTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.activity.result.data
Methods in overit.geocallapp.wfm.roughplanning.bl.activity.result.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningActivityResultSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.bucket.data
Methods in overit.geocallapp.wfm.roughplanning.bl.bucket.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningBucketSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.creationfilter.data
Methods in overit.geocallapp.wfm.roughplanning.bl.creationfilter.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningCreationFilter.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.data
Methods in overit.geocallapp.wfm.roughplanning.bl.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.demand.detail.data
Methods in overit.geocallapp.wfm.roughplanning.bl.demand.detail.data that return CriterionModifier and TypeMethodDescriptionDAODemandSummaryDetailSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.resource.data
Methods in overit.geocallapp.wfm.roughplanning.bl.resource.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.resource.result.data
Methods in overit.geocallapp.wfm.roughplanning.bl.resource.result.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningResourceResultSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningBucketMovementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.state.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningbucketmovement.state.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningBucketMovementState.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.roughplanning.bl.roughplanningordermovement.data
Methods in overit.geocallapp.wfm.roughplanning.bl.roughplanningordermovement.data that return CriterionModifier and TypeMethodDescriptionDAORoughPlanningOrderMovementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.agenda.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.agenda.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.history.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.agenda.resourceroles.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.resourceroles.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaResourceRolesSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.agenda.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.agenda.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAgendaStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.appointment.data
Methods in overit.geocallapp.wfm.scheduling.bl.appointment.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.appointment.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.appointment.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.clocking.type.data
Methods in overit.geocallapp.wfm.scheduling.bl.clocking.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOClockingTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.positiontype.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.positiontype.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingPositionTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.reprocessingmode.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.reprocessingmode.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingReprocessingModeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.wosort.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.configuration.wosort.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingWOSortSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.calendar.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.calendar.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingCalendarSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.history.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingProcessingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.lastprocessing.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.lastprocessing.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingLastProcessingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resource.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resource.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingResourceProcessingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingResourceExclusionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.reason.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.resourceexclusion.reason.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingExclusionReasonSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.state.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.state.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingStateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.tracking.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.tracking.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingTrackingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingWorkOrderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.history.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.workorder.history.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingWorkOrderHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.wostate.data
Methods in overit.geocallapp.wfm.scheduling.bl.immediatescheduling.processing.wostate.data that return CriterionModifier and TypeMethodDescriptionDAOImmediateSchedulingWOStateSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.oss.integrationconfiguration.data
Methods in overit.geocallapp.wfm.scheduling.bl.oss.integrationconfiguration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOssIntegrationConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.oss.response.data
Methods in overit.geocallapp.wfm.scheduling.bl.oss.response.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.data
Methods in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.data that return CriterionModifier and TypeMethodDescriptionDAOPlanningActionHistorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.type.data
Methods in overit.geocallapp.wfm.scheduling.bl.planningactionhistory.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOPlanningActionHistoryTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitystatus.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitystatus.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOCancellationActivityStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitytocancel.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.activitytocancel.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOActivityToCancelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.cancellation.data that return CriterionModifier and TypeMethodDescriptionDAOSchedulingToCancelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOAppointmentScheduling.getFilterCriterion(CommandContext cc) DAOSchedulingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.mode.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.mode.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingMode.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingModeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.scheduling.status.data
Methods in overit.geocallapp.wfm.scheduling.bl.scheduling.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.teamdislocation.data
Methods in overit.geocallapp.wfm.scheduling.bl.teamdislocation.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamDislocationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.teamlocation.data
Methods in overit.geocallapp.wfm.scheduling.bl.teamlocation.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamLocationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.bl.transfertimetype.data
Methods in overit.geocallapp.wfm.scheduling.bl.transfertimetype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTransferTimeTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.scheduling.timeslot.bl.data
Methods in overit.geocallapp.wfm.scheduling.timeslot.bl.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSchedulingTimeslot.getFilterCriterion(CommandContext cc) DAOSchedulingTimeslotSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOSchedulingTimeslot.getValuesCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.configuration.activity.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.activity.data that return CriterionModifier and TypeMethodDescriptionDAOActivitySkillConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.configuration.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.configuration.division.data
Methods in overit.geocallapp.wfm.skills.bl.configuration.division.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillConfigurationDivisionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.division.data
Methods in overit.geocallapp.wfm.skills.bl.division.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillDivisionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.division.skill.data
Methods in overit.geocallapp.wfm.skills.bl.division.skill.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillDivisionGroupedRelationSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOSkillDivisionSkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.level.data
Methods in overit.geocallapp.wfm.skills.bl.level.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillLevelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.overrideconfiguration.data
Methods in overit.geocallapp.wfm.skills.bl.overrideconfiguration.data that return CriterionModifier and TypeMethodDescriptionDAOSkillOverrideConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.overrideconfiguration.skill.data
Methods in overit.geocallapp.wfm.skills.bl.overrideconfiguration.skill.data that return CriterionModifier and TypeMethodDescriptionDAOSkillOverrideConfigurationSkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.qualification.data
Methods in overit.geocallapp.wfm.skills.bl.qualification.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOQualificationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.skill.data
Methods in overit.geocallapp.wfm.skills.bl.skill.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.skills.bl.skill.qualification.data
Methods in overit.geocallapp.wfm.skills.bl.skill.qualification.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOSkillQualificationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.systemsettings.bl.calendar.holiday.data
Methods in overit.geocallapp.wfm.systemsettings.bl.calendar.holiday.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.systemsettings.bl.datatype.data
Methods in overit.geocallapp.wfm.systemsettings.bl.datatype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAODataType.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.systemsettings.bl.externalsystem.data
Methods in overit.geocallapp.wfm.systemsettings.bl.externalsystem.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOExternalSystemSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.systemsettings.bl.measurementunit.data
Methods in overit.geocallapp.wfm.systemsettings.bl.measurementunit.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOMeasurementUnitSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.cardinality.data
Methods in overit.geocallapp.wfm.teams.bl.team.cardinality.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamCardinality.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.data
Methods in overit.geocallapp.wfm.teams.bl.team.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.formation.skillconfiguration.data
Methods in overit.geocallapp.wfm.teams.bl.team.formation.skillconfiguration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFormationSkillConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.formation.skilldivision.data
Methods in overit.geocallapp.wfm.teams.bl.team.formation.skilldivision.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOFormationSkillDivisionSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.level.data
Methods in overit.geocallapp.wfm.teams.bl.team.level.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamLevelSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.member.data
Methods in overit.geocallapp.wfm.teams.bl.team.member.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamMemberSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.shift.data
Methods in overit.geocallapp.wfm.teams.bl.team.shift.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamShiftSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.shift.resource.data
Methods in overit.geocallapp.wfm.teams.bl.team.shift.resource.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamShiftExtendedSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOTeamShiftResourceSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.teams.bl.team.type.data
Methods in overit.geocallapp.wfm.teams.bl.team.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOTeamTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.timesheets.bl.clocking.data
Methods in overit.geocallapp.wfm.timesheets.bl.clocking.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOClockingSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.vehicles.bl.data
Methods in overit.geocallapp.wfm.vehicles.bl.data that return CriterionModifier and TypeMethodDescriptionDAOVehicle.getFilterCriterion(CommandContext cc) DAOVehicleSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.activity.data
Methods in overit.geocallapp.wfm.workorders.bl.activity.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.activity.skillconfiguration.data
Methods in overit.geocallapp.wfm.workorders.bl.activity.skillconfiguration.data that return CriterionModifier and TypeMethodDescriptionDAOActivitySkillConfigurationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.cancelsuspendreason.data
Methods in overit.geocallapp.wfm.workorders.bl.cancelsuspendreason.data that return CriterionModifier and TypeMethodDescriptionDAOCancelSuspendReasonSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.header.data
Methods in overit.geocallapp.wfm.workorders.bl.header.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderHeader.getFilterCriterion(CommandContext cc) DAOWorkOrderHeaderSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.meter.data
Methods in overit.geocallapp.wfm.workorders.bl.meter.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderMeterSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.note.data
Methods in overit.geocallapp.wfm.workorders.bl.note.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderNoteSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operation.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.data that return CriterionModifier and TypeMethodDescriptionDAOOperationRequirementSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.migration.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.operationRequirement.migration.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOOperationExtractRequirements.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operation.status.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operation.type.data
Methods in overit.geocallapp.wfm.workorders.bl.operation.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderOperationTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.operationtypecategory.data
Methods in overit.geocallapp.wfm.workorders.bl.operationtypecategory.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationTypeCategorySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.origin.data
Methods in overit.geocallapp.wfm.workorders.bl.origin.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.requesttype.data
Methods in overit.geocallapp.wfm.workorders.bl.requesttype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAORequestTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.servicetype.data
Methods in overit.geocallapp.wfm.workorders.bl.servicetype.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOServiceTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.status.data
Methods in overit.geocallapp.wfm.workorders.bl.status.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderStatusSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.status.user.type.data
Methods in overit.geocallapp.wfm.workorders.bl.status.user.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderEditableStatusForUserTypeSearch.getFilterCriterion(CommandContext cc) protected CriterionDAOWorkOrderStatusUserTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.type.activity.data
Methods in overit.geocallapp.wfm.workorders.bl.type.activity.data that return CriterionModifier and TypeMethodDescriptionDAOWorkOrderOperationTypeActivitySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.type.data
Methods in overit.geocallapp.wfm.workorders.bl.type.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.type.eventmanager.data
Methods in overit.geocallapp.wfm.workorders.bl.type.eventmanager.data that return CriterionModifier and TypeMethodDescriptionDAOEventManagerConfWoTypeSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.type.structure.data
Methods in overit.geocallapp.wfm.workorders.bl.type.structure.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderTypeStructureSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.urgency.data
Methods in overit.geocallapp.wfm.workorders.bl.urgency.data that return CriterionModifier and TypeMethodDescriptionprotected CriterionDAOWorkOrderUrgencySearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.workcycle.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.workcycle.rule.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.rule.data that return Criterion -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.workcycle.structure.data
Methods in overit.geocallapp.wfm.workorders.bl.workcycle.structure.data that return CriterionModifier and TypeMethodDescriptionDAOWorkCycleStructureSearch.getFilterCriterion(CommandContext cc) -
Uses of Criterion in overit.geocallapp.wfm.workorders.bl.workload.data
Methods in overit.geocallapp.wfm.workorders.bl.workload.data that return Criterion
DISCARD_USELESS_COLLECTIONinstead, an improved version that also includes subclasses ofCollection.