ArrayLists and String
Across
- 1. This is what goes in the <> for the ArrayList
- 3. *String* method that determines if a substring is within a String
- 5. The operator name of the + sign when used in a String
- 9. This method tells the number of items in a List
- 10. String method used for alphabetizing *String* objects
- 11. Java Strings can't be changed they are
- 12. This method tells the number of letters in a String
- 13. Wrapper class and method to convert a *String* to a double
- 15. The data type in Java to store counting numbers
- 17. Method identifies the first index of a substring in a *String*
- 18. ArrayList method used to put an *item* at the end of the list
Down
- 2. These data types cannot be stored in an ArrayList
- 4. String method with two int parameters goes from *start* until one less than *end*
- 6. Wrapper class and method to convert a *String* to an int
- 7. ArrayList method to replace an *item* at a specified *index*
- 8. ArrayList method to take an item out of a list from a specified *index*
- 14. String method with int parameter to go from *start* until the end
- 16. The data type in Java to store text