Uses of Enum
dev.metaschema.core.metapath.function.ComparisonFunctions.Operator
Packages that use ComparisonFunctions.Operator
Package
Description
Provides the core framework for defining and executing Metapath functions.
-
Uses of ComparisonFunctions.Operator in dev.metaschema.core.metapath.function
Methods in dev.metaschema.core.metapath.function that return ComparisonFunctions.OperatorModifier and TypeMethodDescriptionstatic ComparisonFunctions.OperatorReturns the enum constant of this type with the specified name.static ComparisonFunctions.Operator[]ComparisonFunctions.Operator.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in dev.metaschema.core.metapath.function with parameters of type ComparisonFunctions.OperatorModifier and TypeMethodDescriptionstatic IBooleanItemComparisonFunctions.binaryCompare(IBase64BinaryItem left, ComparisonFunctions.Operator operator, IBase64BinaryItem right) Perform a binary data-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.booleanCompare(IBooleanItem left, ComparisonFunctions.Operator operator, IBooleanItem right) Perform a boolean-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.compare(IAnyAtomicItem left, ComparisonFunctions.Operator operator, IAnyAtomicItem right, DynamicContext dynamicContext) Compare therightitem with theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.dateTimeCompare(IDateTimeItem left, ComparisonFunctions.Operator operator, IDateTimeItem right, DynamicContext dynamicContext) Perform a date and time-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.durationCompare(IDurationItem left, ComparisonFunctions.Operator operator, IDurationItem right) Perform a duration-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.generalComparison(ISequence<? extends IAnyAtomicItem> leftItems, ComparisonFunctions.Operator operator, ISequence<? extends IAnyAtomicItem> rightItems, DynamicContext dynamicContext) Compare the sets of atomic items.static IBooleanItemComparisonFunctions.numericCompare(INumericItem left, ComparisonFunctions.Operator operator, INumericItem right) Perform a number-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.stringCompare(IStringItem left, ComparisonFunctions.Operator operator, IStringItem right) Perform a string-based comparison of therightitem against theleftitem using the specifiedoperator.static IBooleanItemComparisonFunctions.valueCompairison(IAnyAtomicItem leftItem, ComparisonFunctions.Operator operator, IAnyAtomicItem rightItem, DynamicContext dynamicContext) Compare the two items using the providedoperator.