Package com.google.common.collect

Examples of com.google.common.collect.ImmutableCollection$SerializedForm


        return bom;
    }

    @SuppressWarnings("unchecked")
    public <T> Iterable<NamedComponent<T>> get(Factory.Query<T> key) {
        ImmutableCollection namedComponents = checkNotNull(materials.get(key),
                "key not found: %s. Check your bill of materials. Available keys: %s", key, materials.keySet());
        return (Iterable<NamedComponent<T>>) namedComponents;
    }
View Full Code Here

TOP

Related Classes of com.google.common.collect.ImmutableCollection$SerializedForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.