Create a new builder that is pre-populated with the content from a given container. @deprecated Use Attributes#toBuilder() on the Attributes instance instead. This method will be removed in the future.
(Attributes base)
| 89 | * This method will be removed in the future. |
| 90 | */ |
| 91 | @Deprecated |
| 92 | public static Builder newBuilder(Attributes base) { |
| 93 | checkNotNull(base, "base"); |
| 94 | return new Builder(base); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Create a new builder. |