Skip to content

Instantly share code, notes, and snippets.

View erichkleung's full-sized avatar

Eric Leung erichkleung

View GitHub Profile

Keybase proof

I hereby claim:

  • I am erichkleung on github.
  • I am cb_eric (https://keybase.io/cb_eric) on keybase.
  • I have a public key ASCO4_UjS6cs7hnZBzb8qTsOoQxOnphmgKv96xu9NaH14go

To claim this, I am signing this object:

public class Rider {
private String firstName;
private String lastName;
private int age;
public String getFirstName() {
return firstName;
}
public String getLastName() {
public class Rider {
@NonNull private String firstName;
@Nullable private String lastName;
@IntRange(from=0, to=123) private int age;
@NonNull
public String getFirstName() {
return firstName;
}