Skip to content

Instantly share code, notes, and snippets.

@davidtcdeveloper
Created May 29, 2016 18:12
Show Gist options
  • Select an option

  • Save davidtcdeveloper/c9579c2f20ee6847284b50a4cf696f51 to your computer and use it in GitHub Desktop.

Select an option

Save davidtcdeveloper/c9579c2f20ee6847284b50a4cf696f51 to your computer and use it in GitHub Desktop.
Creating class with AutoValue builder
PersonData personData = PersonData.builder()
.id(1)
.name("David Tiago Conceição")
.eMail("david@david.com")
.status(0)
.profileUrl("twitter.com/davidtiagocon")
.pictureImageUrl("https://pbs.twimg.com/profile_images/601894402198544384/FJupV0uC.jpg")
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment