Guest User

Untitled

a guest
Dec 9th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. HashSet<String> strings = new HashSet<>();
  2. strings.add("ravi");
  3. strings.add("kishore");
  4. strings.add("runy");
  5. strings.add("lenin");
  6. strings.add("ali");
  7. strings.add("cheth");
  8.  
  9. for (String s : strings) {
  10. Log.e(TAG, "Set items are: " + s + "/n");
  11. }
Add Comment
Please, Sign In to add comment