Searched refs:EntityCursor (Results 1 - 25 of 51) sorted by relevance

123

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java17 import com.sleepycat.persist.EntityCursor;
49 EntityCursor<SimpleEntityClass> sec_pcursor;
50 EntityCursor<SimpleEntityClass> sec_scursor;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java17 import com.sleepycat.persist.EntityCursor;
49 EntityCursor<SimpleEntityClass> sec_pcursor;
50 EntityCursor<SimpleEntityClass> sec_scursor;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java17 import com.sleepycat.persist.EntityCursor;
49 EntityCursor<SimpleEntityClass> sec_pcursor;
50 EntityCursor<SimpleEntityClass> sec_scursor;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DEntityIndex.java158 * <li>An {@link EntityCursor} can be obtained using the {@link #keys} and
178 * {@code EntityCursor<Employee>} cursor = secondaryIndex.entities();
194 * {@code EntityCursor<Employee>} cursor =
209 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
234 * EntityCursor}.</p>
266 * EntityCursor#delete}.</p>
380 * EntityCursor#delete} method is called:</p>
384 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
397 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, null);
419 * {@code EntityCursor<Employe
[all...]
H A DBasicIndex.java138 public EntityCursor<K> keys()
144 public EntityCursor<K> keys(Transaction txn, CursorConfig config)
150 public EntityCursor<E> entities()
156 public EntityCursor<E> entities(Transaction txn,
163 public EntityCursor<K> keys(K fromKey, boolean fromInclusive,
171 public EntityCursor<K> keys(Transaction txn,
183 public EntityCursor<E> entities(K fromKey, boolean fromInclusive,
191 public EntityCursor<E> entities(Transaction txn,
233 private <V> EntityCursor<V> cursor(Transaction txn,
257 private <V> EntityCursor<
[all...]
H A DSubIndex.java131 EntityCursor<PK> cursor = keys(null, cursorConfig);
190 public EntityCursor<PK> keys()
196 public EntityCursor<PK> keys(Transaction txn, CursorConfig config)
202 public EntityCursor<E> entities()
208 public EntityCursor<E> entities(Transaction txn,
215 public EntityCursor<PK> keys(PK fromKey,
225 public EntityCursor<PK> keys(Transaction txn,
237 public EntityCursor<E> entities(PK fromKey,
247 public EntityCursor<E> entities(Transaction txn,
289 private <V> EntityCursor<
[all...]
H A DBasicIterator.java19 * Implements Iterator for an arbitrary EntityCursor.
25 private EntityCursor<V> entityCursor;
31 * An EntityCursor is given and the remove() method is supported.
33 BasicIterator(EntityCursor<V> entityCursor, LockMode lockMode) {
H A DSubIndexCursor.java30 public EntityCursor<V> dup()
H A DEntityCursor.java25 * <p>{@code EntityCursor} objects are <em>not</em> thread-safe. Cursors
70 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
94 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
111 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
122 * <p>The {@link Iterable} interface is also extended by {@link EntityCursor}
126 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
139 * simple it is best not to mix the use of an {@code EntityCursor}
140 * {@code Iterator} with the use of the {@code EntityCursor} traversal methods
141 * such as {@link #next()}, for a single {@code EntityCursor} object.</p>
160 * {@code EntityCursor<Employe
273 public interface EntityCursor<V> extends ForwardCursor<V> { interface in inherits:ForwardCursor
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DEntityIndex.java158 * <li>An {@link EntityCursor} can be obtained using the {@link #keys} and
178 * {@code EntityCursor<Employee>} cursor = secondaryIndex.entities();
194 * {@code EntityCursor<Employee>} cursor =
209 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
234 * EntityCursor}.</p>
266 * EntityCursor#delete}.</p>
380 * EntityCursor#delete} method is called:</p>
384 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
397 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, null);
419 * {@code EntityCursor<Employe
[all...]
H A DBasicIndex.java138 public EntityCursor<K> keys()
144 public EntityCursor<K> keys(Transaction txn, CursorConfig config)
150 public EntityCursor<E> entities()
156 public EntityCursor<E> entities(Transaction txn,
163 public EntityCursor<K> keys(K fromKey, boolean fromInclusive,
171 public EntityCursor<K> keys(Transaction txn,
183 public EntityCursor<E> entities(K fromKey, boolean fromInclusive,
191 public EntityCursor<E> entities(Transaction txn,
233 private <V> EntityCursor<V> cursor(Transaction txn,
257 private <V> EntityCursor<
[all...]
H A DSubIndex.java131 EntityCursor<PK> cursor = keys(null, cursorConfig);
190 public EntityCursor<PK> keys()
196 public EntityCursor<PK> keys(Transaction txn, CursorConfig config)
202 public EntityCursor<E> entities()
208 public EntityCursor<E> entities(Transaction txn,
215 public EntityCursor<PK> keys(PK fromKey,
225 public EntityCursor<PK> keys(Transaction txn,
237 public EntityCursor<E> entities(PK fromKey,
247 public EntityCursor<E> entities(Transaction txn,
289 private <V> EntityCursor<
[all...]
H A DBasicIterator.java19 * Implements Iterator for an arbitrary EntityCursor.
25 private EntityCursor<V> entityCursor;
31 * An EntityCursor is given and the remove() method is supported.
33 BasicIterator(EntityCursor<V> entityCursor, LockMode lockMode) {
H A DSubIndexCursor.java30 public EntityCursor<V> dup()
H A DEntityCursor.java25 * <p>{@code EntityCursor} objects are <em>not</em> thread-safe. Cursors
70 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
94 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
111 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
122 * <p>The {@link Iterable} interface is also extended by {@link EntityCursor}
126 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
139 * simple it is best not to mix the use of an {@code EntityCursor}
140 * {@code Iterator} with the use of the {@code EntityCursor} traversal methods
141 * such as {@link #next()}, for a single {@code EntityCursor} object.</p>
160 * {@code EntityCursor<Employe
273 public interface EntityCursor<V> extends ForwardCursor<V> { interface in inherits:ForwardCursor
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DEntityIndex.java158 * <li>An {@link EntityCursor} can be obtained using the {@link #keys} and
178 * {@code EntityCursor<Employee>} cursor = secondaryIndex.entities();
194 * {@code EntityCursor<Employee>} cursor =
209 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
234 * EntityCursor}.</p>
266 * EntityCursor#delete}.</p>
380 * EntityCursor#delete} method is called:</p>
384 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
397 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, null);
419 * {@code EntityCursor<Employe
[all...]
H A DBasicIndex.java138 public EntityCursor<K> keys()
144 public EntityCursor<K> keys(Transaction txn, CursorConfig config)
150 public EntityCursor<E> entities()
156 public EntityCursor<E> entities(Transaction txn,
163 public EntityCursor<K> keys(K fromKey, boolean fromInclusive,
171 public EntityCursor<K> keys(Transaction txn,
183 public EntityCursor<E> entities(K fromKey, boolean fromInclusive,
191 public EntityCursor<E> entities(Transaction txn,
233 private <V> EntityCursor<V> cursor(Transaction txn,
257 private <V> EntityCursor<
[all...]
H A DSubIndex.java131 EntityCursor<PK> cursor = keys(null, cursorConfig);
190 public EntityCursor<PK> keys()
196 public EntityCursor<PK> keys(Transaction txn, CursorConfig config)
202 public EntityCursor<E> entities()
208 public EntityCursor<E> entities(Transaction txn,
215 public EntityCursor<PK> keys(PK fromKey,
225 public EntityCursor<PK> keys(Transaction txn,
237 public EntityCursor<E> entities(PK fromKey,
247 public EntityCursor<E> entities(Transaction txn,
289 private <V> EntityCursor<
[all...]
H A DBasicIterator.java19 * Implements Iterator for an arbitrary EntityCursor.
25 private EntityCursor<V> entityCursor;
31 * An EntityCursor is given and the remove() method is supported.
33 BasicIterator(EntityCursor<V> entityCursor, LockMode lockMode) {
H A DSubIndexCursor.java30 public EntityCursor<V> dup()
H A DEntityCursor.java25 * <p>{@code EntityCursor} objects are <em>not</em> thread-safe. Cursors
70 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
94 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
111 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
122 * <p>The {@link Iterable} interface is also extended by {@link EntityCursor}
126 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities();
139 * simple it is best not to mix the use of an {@code EntityCursor}
140 * {@code Iterator} with the use of the {@code EntityCursor} traversal methods
141 * such as {@link #next()}, for a single {@code EntityCursor} object.</p>
160 * {@code EntityCursor<Employe
273 public interface EntityCursor<V> extends ForwardCursor<V> { interface in inherits:ForwardCursor
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_java/src/persist/
H A DCustomKeyOrderExample.java17 import com.sleepycat.persist.EntityCursor;
110 EntityCursor<Person> people = index.entities();
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/examples_java/src/persist/txn/
H A DStoreWriter.java17 import com.sleepycat.persist.EntityCursor;
161 EntityCursor<PayloadDataEntity> cursor = pdKey.entities(txn, cc);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_java/src/persist/
H A DCustomKeyOrderExample.java17 import com.sleepycat.persist.EntityCursor;
110 EntityCursor<Person> people = index.entities();
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/examples_java/src/persist/txn/
H A DStoreWriter.java17 import com.sleepycat.persist.EntityCursor;
161 EntityCursor<PayloadDataEntity> cursor = pdKey.entities(txn, cc);

Completed in 114 milliseconds

123