FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
Dobbs M-Dev
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
February 01, 2006

Native Queries for Persistent Objects

(Page 3 of 11)
February, 2006: Native Queries for Persistent Objects

// Java
List <Student> students = database.query <Student> (
   new Predicate <Student> () {
     public boolean match(Student student){
       return student.getAge() < 20 && student.getName().contains("f"); 
    }
});
Collections.sort(students, new Comparator <Student>(){
  public int compare(Student student1, Student student2) {
    return student1.getAge() - student2.getAge();
  }
});

Example 10: Defining the sort order of returned objects.

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK