Searched refs:Person (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DCustomKeyOrderExample.java29 static class Person { class in class:CustomKeyOrderExample
34 Person(String name) { method in class:CustomKeyOrderExample.Person
38 private Person() {} // For deserialization method in class:CustomKeyOrderExample.Person
102 PrimaryIndex<ReverseOrder,Person> index =
103 store.getPrimaryIndex(ReverseOrder.class, Person.class);
105 index.put(new Person("Andy"));
106 index.put(new Person("Lisa"));
107 index.put(new Person("Zola"));
110 EntityCursor<Person> people = index.entities();
112 for (Person perso
[all...]
H A DPersonExample.java39 static class Person { class in class:PersonExample
47 @SecondaryKey(relate=MANY_TO_ONE, relatedEntity=Person.class)
58 Person(String name, String ssn, String parentSsn) { method in class:PersonExample.Person
64 private Person() {} // For deserialization method in class:PersonExample.Person
99 /* Person accessors */
100 PrimaryIndex<String,Person> personBySsn;
101 SecondaryIndex<String,String,Person> personByParentSsn;
102 SecondaryIndex<String,String,Person> personByEmailAddresses;
103 SecondaryIndex<Long,String,Person> personByEmployerIds;
114 String.class, Person
[all...]

Completed in 27 milliseconds