• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/

Lines Matching refs:view

34  * <p>This class defines a view and takes care of reading and updating indices,
50 CursorConfig cursorConfig; // Used for all operations via this view
51 boolean writeAllowed; // Read-write view
69 * called, to further narrow the view.
76 * Creates a view for a given database and bindings. The initial key range
77 * of the view will be open.
143 * Clones the view.
155 * Return a new key-set view derived from this view by setting the
158 * @return the derived view.
165 DataView view = cloneView();
166 view.valueBinding = null;
167 view.entityBinding = null;
168 return view;
172 * Return a new value-set view derived from this view by setting the
175 * @return the derived view.
183 DataView view = cloneView();
184 view.keyBinding = null;
185 return view;
189 * Return a new value-set view for single key range.
193 * @return the derived view.
208 DataView view = valueSetView();
209 view.range = singleKeyRange;
210 return view;
214 * Return a new value-set view for key range, optionally changing
222 DataView view = cloneView();
223 view.setRange(beginKey, beginInclusive, endKey, endInclusive);
224 if (keyBinding != null) view.keyBinding = keyBinding;
225 return view;
229 * Return a new duplicates view for a given secondary key.
242 DataView view = cloneView();
243 view.range = subRange(view.range, secondaryKey);
244 view.dupsKey = view.range.getSingleKey();
245 view.dupsView = true;
246 view.keyBinding = primaryKeyBinding;
247 return view;
251 * Returns a new view with a specified cursor configuration.
255 DataView view = cloneView();
256 view.cursorConfig = (config != null) ?
258 return view;
262 * Returns the current transaction for the view or null if the environment
271 * Sets this view's range to a subrange with the given parameters.
309 * Returns whether this is a view on a secondary database rather
318 * Returns whether no records are present in the view.
417 * Returns a cursor for this view that reads only records having the
449 * Returns a cursor for this view that reads only records having the
476 "returning key requires unindexed view");
530 * of this view, which determines whether a value/entity object alone is