Example usage for com.google.common.collect ImmutableSet of

List of usage examples for com.google.common.collect ImmutableSet of

Introduction

In this page you can find the example usage for com.google.common.collect ImmutableSet of.

Prototype

@SuppressWarnings("unchecked")
    public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) 

Source Link

Usage

From source file:com.google.template.soy.bidifunctions.BidiFunctions.java

public static ImmutableSet<SoySourceFunction> functions(Supplier<BidiGlobalDir> bidiGlobalDir) {
    return ImmutableSet.of(new BidiDirAttrFunction(bidiGlobalDir), new BidiEndEdgeFunction(bidiGlobalDir),
            new BidiGlobalDirFunction(bidiGlobalDir), new BidiMarkAfterFunction(bidiGlobalDir),
            new BidiMarkFunction(bidiGlobalDir), new BidiStartEdgeFunction(bidiGlobalDir),
            new BidiTextDirFunction());
}