Description
We have a few downstream users who are referencing ImmutableBuilders directly because that is the only way to access pre-sized constructors. These are ImmutableMapNodeBuilder, ImmutableUnkeyedListNodeBuilder and ImmutableUserMapNodeBuilder.
Add static methods to Builders class to forward to these (and possibly others) in the form of:
public static CollectionNodeBuilder<MapEntryNode, UserMapNode> orderedMapBuilderWithExpectedSize(final int size) { return ImmutableUserMapNodeBuilder.create(size); }