FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaGenerics/src/java_generics/PersonComparator.java at master · zeddysoft/JavaGenerics · GitHub
zeddysoft
/
JavaGenerics
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaGenerics
/
src
/
java_generics
/
PersonComparator.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (17 loc) · 467 Bytes
Breadcrumbs
JavaGenerics
/
src
/
java_generics
/
PersonComparator.java
Copy path
File metadata and controls
21 lines (17 loc) · 467 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package
java_generics
;
import
java
.
util
.
Comparator
;
/**
*
* @author Azeez.Taiwo
*/
public
class
PersonComparator
implements
Comparator
<
Person
>{
@
Override
public
int
compare
(
Person
o1
,
Person
o2
) {
return
Integer
.
compare
(
o1
.
getAge
(),
o2
.
getAge
());
}
}
Back
|
FazBrowse Home
|
New Git URL