Uses of Enum Class
org.rumbledb.runtime.update.primitives.Mode
Packages that use Mode
Package
Description
-
Uses of Mode in org.rumbledb.expressions.update
Methods in org.rumbledb.expressions.update that return ModeModifier and TypeMethodDescriptionCreateCollectionExpression.getMode()DeleteIndexFromCollectionExpression.getMode()InsertIndexIntoCollectionExpression.getMode()TruncateCollectionExpression.getMode()Constructors in org.rumbledb.expressions.update with parameters of type ModeModifierConstructorDescriptionCreateCollectionExpression(Expression collection, Expression contentExpression, Mode mode, ExceptionMetadata metadata) DeleteIndexFromCollectionExpression(Expression collection, Expression numDelete, boolean isFirst, Mode mode, ExceptionMetadata metadata) InsertIndexIntoCollectionExpression(Expression collection, Expression contentExpression, Expression pos, Mode mode, boolean isFirst, boolean isLast, ExceptionMetadata metadata) TruncateCollectionExpression(Expression collectionName, Mode mode, ExceptionMetadata metadata) -
Uses of Mode in org.rumbledb.runtime.update.expression
Constructors in org.rumbledb.runtime.update.expression with parameters of type ModeModifierConstructorDescriptionCreateCollectionIterator(RuntimeIterator targetIterator, RuntimeIterator contentIterator, Mode mode, RuntimeStaticContext staticContext) DeleteIndexFromCollectionIterator(RuntimeIterator targetIterator, boolean isFirst, Mode mode, RuntimeStaticContext staticContext) DeleteIndexFromCollectionIterator(RuntimeIterator targetIterator, RuntimeIterator numDeleteIterator, boolean isFirst, Mode mode, RuntimeStaticContext staticContext) InsertIndexIntoCollectionIterator(RuntimeIterator targetIterator, RuntimeIterator contentIterator, RuntimeIterator posIterator, Mode mode, boolean isFirst, boolean isLast, RuntimeStaticContext staticContext) InsertIndexIntoCollectionIterator(RuntimeIterator targetIterator, RuntimeIterator contentIterator, Mode mode, boolean isFirst, boolean isLast, RuntimeStaticContext staticContext) TruncateCollectionIterator(RuntimeIterator targetIterator, Mode mode, RuntimeStaticContext staticContext) -
Uses of Mode in org.rumbledb.runtime.update.primitives
Methods in org.rumbledb.runtime.update.primitives that return ModeModifier and TypeMethodDescriptionstatic ModeMode.fromString(String modeStr) Collection.getMode()static ModeReturns the enum constant of this class with the specified name.static Mode[]Mode.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.rumbledb.runtime.update.primitives with parameters of type ModeModifierConstructorDescriptionCollection(Mode mode, String collectionPath) Constructor for Collection using logical path.