1.1. Use access modifiers: private, protected, and public
1.2. Override methods
1.3. Overload constructors and methods
1.4. Use the instanceof operator and casting
1.5. Use virtual method invocation
1.6. Override the hashCode, equals, and toString methods from the Object class to improve the functionality of your class.
1.7. Use package and import statements
2.1. Identify when and how to apply abstract classes
2.2. Construct abstract Java classes and subclasses
2.3. Use the static and final keywords
2.4. Create top-level and nested classes
2.5. Use enumerated types
3.1. Write code that declares, implements and/or extends interfaces
3.2. Choose between interface inheritance and class inheritance
3.3. Apply cohesion, low-coupling, IS-A, and HAS-A principles
3.4. Apply object composition principles (including has-a relationships)
3.5. Design a class using a Singleton design pattern
3.6. Write code to implement the Data Access Object (DAO) pattern
3.7. Design and create objects using a factory pattern
4.1. Create a generic class
4.2. Use the diamond for type inference
4.3. Analyze the interoperability of collections that use raw types and generic types
4.4. Use wrapper classes, autoboxing and unboxing
4.5. Create and use List, Set and Deque implementations
4.6. Create and use Map implementations
4.7. Use java.util.Comparator and java.lang.Comparable
4.8. Sort and search arrays and lists
5.1. Search, parse and build strings (including Scanner, StringTokenizer, StringBuilder, String and Formatter)
5.2. Search, parse, and replace strings by using regular expressions, using expression patterns for matching limited to: . (dot), * (star), + (plus), ?, \d, \D, \s, \S, \w, \W, \b. \B, [], ().
5.3. Format strings using the formatting parameters: %b, %c, %d, %f, and %s in format strings.
6.1. Use throw and throws statements
6.2. Develop code that handles multiple Exception types in a single catch block
6.3. Develop code that uses try-with-resources statements (including using classes that implement the AutoCloseable interface)
6.4. Create custom exceptions
6.5. Test invariants by using assertions
7.1. Read and write data from the console
7.2. Use streams to read from and write to files by using classes in the java.io package including BufferedReader, BufferedWriter, File, FileReader, FileWriter, DataInputStream, DataOutputStream, ObjectOutputStream, ObjectInputStream, and PrintWriter
8.1. Operate on file and directory paths with the Path class
8.2. Check, delete, copy, or move a file or directory with the Files class
8.3. Read and change file and directory attributes, focusing on the BasicFileAttributes, DosFileAttributes, and PosixFileAttributes interfaces
8.4. Recursively access a directory tree using the DirectoryStream and FileVisitor interfaces
8.5. Find a file with the PathMatcher interface
8.6. Watch a directory for changes with the WatchService interface
9.1. Describe the interfaces that make up the core of the JDBC API (including the Driver, Connection, Statement, and ResultSet interfaces and their relationship to provider implementations)
9.2. Identify the components required to connect to a database using the DriverManager class (including the jdbc URL)
9.3. Submit queries and read results from the database (including creating statements, returning result sets, iterating through the results, and properly closing result sets, statements, and connections)
9.4. Use JDBC transactions (including disabling auto-commit mode, committing and rolling back transactions, and setting and rolling back to savepoints)
9.5. Construct and use RowSet objects using the RowSetProvider class and the RowSetFactory interface
9.6. Create and use PreparedStatement and CallableStatement objects
10.1. Create and use the Thread class and the Runnable interface
10.2. Manage and control thread lifecycle
10.3. Synchronize thread access to shared data
10.4. Identify code that may not execute correctly in a multi-threaded environment.
11.1. Use collections from the java.util.concurrent package with a focus on the advantages over and differences from the traditional java.util collections.
11.2. Use Lock, ReadWriteLock, and ReentrantLock classes in the java.util.concurrent.locks package to support lock-free thread-safe programming on single variables.
11.3. Use Executor, ExecutorService, Executors, Callable, and Future to execute tasks using thread pools.
11.4. Use the parallel Fork/Join Framework
12.1. Read and set the locale by using the Locale object
12.2. Build a resource bundle for each locale
12.3. Call a resource bundle from an application
12.4. Format dates, numbers, and currency values for localization with the NumberFormat and DateFormat classes (including number format patterns)
12.5. Describe the advantages of localizing an application
12.6. Define a locale using language and country codes
jilguera