The document describes various code refactoring methods such as Extract Method, Inline Method, Replace Temp with Query, Introduce Explaining Variable, and Replace Method with Method Object. Extract Method takes a section of code and turns it into its own method to improve readability. Inline Method replaces a method's body directly into its callers when the method is simple. Replace Temp with Query replaces a temporary variable with a method query.