- This quiz has sections
- fundamentals
BasicStringUtilsStringUtils- difficult
- arrays
ArrayUtils
- collections
CollectionUtilsPowerSet
- generics
GenericUtils
- generics
TelevisionTVChannel
- fundamentals
- Description
- The purpose of this class is to perform basic
Stringmanipulations.
- The purpose of this class is to perform basic
- Methods to Complete
String getString(char[])String getString(Character[])String removeAllVowels(String)String removeSpecifiedCharacters(String, String)
- Description
- The purpose of this class is to aggregate utility methods to define a
getAllCasingsmethod.
- The purpose of this class is to aggregate utility methods to define a
- Methods to Complete
- `Collection getAllCasings(String)
String upperCaseIndices(String, Integer...)String insertAtIndex(String, String, Integer)String replaceAtIndex(String, Character, Integer)
- Description
- The purpose of this class is to manipulate Array objects
- Methods to Complete
Integer[] getRange(Integer, Integer)char[] unbox(Character[])Character[] box(char[])
- Description
- The purpose of this class is to model a Television by composing a
TVChannelandisTurnedOnflag.
- The purpose of this class is to model a Television by composing a
- Methods to Complete
void turnOn()void setChannel(Integer channel)TVChannel getChannel()
- Description
- The purpose of this class is to create a set of Enumerations each representative of an expected
TVChannel
- The purpose of this class is to create a set of Enumerations each representative of an expected
- Methods to Complete
TVChannel getByOrdinal(int)
- Description
- The purpose of this class is create methods to handle generic operations
- Methods to Complete
<T> T[] toArray(Collection<T>
- Description
- The purpose of this class is create methods to handle operations on collection objects
- Methods to Complete
<E> List<E> toList(Collection)Boolean contains(Collection<? extends Collection<?>>, Collection<?>)Collection<? extends Collection<?>> nest(Collection<?>...)Collection<?> flatten(Collection<?>...)