Uses of Enum Class
com.almworks.jira.structure.api.row.ItemAccessMode
Packages that use ItemAccessMode
-
Uses of ItemAccessMode in com.almworks.jira.structure.api.forest.item
Methods in com.almworks.jira.structure.api.forest.item with parameters of type ItemAccessModeModifier and TypeMethodDescriptionImmutableItemForest.getRow(long rowId, ItemAccessMode access) ManagerBackedItemForest.getRow(long rowId, ItemAccessMode access) voidManagerBackedItemForest.scanRows(LongIterable rows, boolean sorted, ItemAccessMode access, LongCollector missingCollector, Predicate<StructureRow> iteratee) Constructors in com.almworks.jira.structure.api.forest.item with parameters of type ItemAccessModeModifierConstructorDescriptionManagerBackedItemForest(Forest forest, RowManager rowManager, ItemAccessMode defaultAccessMode) -
Uses of ItemAccessMode in com.almworks.jira.structure.api.row
Methods in com.almworks.jira.structure.api.row that return ItemAccessModeModifier and TypeMethodDescriptionstatic ItemAccessModeReturns the enum constant of this class with the specified name.static ItemAccessMode[]ItemAccessMode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.almworks.jira.structure.api.row with parameters of type ItemAccessModeModifier and TypeMethodDescriptionstatic StructureRowSimpleRow.create(long rowId, ItemIdentity itemId, long semantics, ItemResolver resolver, ItemAccessMode accessMode) RowRetriever.getRow(long rowId, ItemAccessMode access) RetrievesStructureRowwith additional information about how the calling code is going to use methodStructureRow.getItem(java.lang.Class<I>).default voidRowRetriever.scanAllExistingRows(LongIterable rows, boolean sorted, ItemAccessMode access, Consumer<StructureRow> consumer) A convenience variation ofRowRetriever.scanRows(com.almworks.integers.LongIterable, boolean, com.almworks.jira.structure.api.row.ItemAccessMode, com.almworks.integers.LongCollector, java.util.function.Predicate<com.almworks.jira.structure.api.row.StructureRow>)that always goes through all of the row IDs and ignores any missing rows.default voidRowRetriever.scanAllRows(LongIterable rows, boolean sorted, ItemAccessMode access, LongCollector missingCollector, Consumer<StructureRow> consumer) A convenience variation ofRowRetriever.scanRows(com.almworks.integers.LongIterable, boolean, com.almworks.jira.structure.api.row.ItemAccessMode, com.almworks.integers.LongCollector, java.util.function.Predicate<com.almworks.jira.structure.api.row.StructureRow>)that always goes through all of the row IDs.default voidRowRetriever.scanRows(LongIterable rows, boolean sorted, ItemAccessMode access, LongCollector missingCollector, Predicate<StructureRow> iteratee) Loads multiple rows by their IDs and callsiterateewith aStructureRowfor each row ID in the input.