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() 

Source Link

Usage

From source file:org.onosproject.net.config.NetworkConfigServiceAdapter.java

@Override
public <S> Set<S> getSubjects(Class<S> subjectClass) {
    return ImmutableSet.of();
}

From source file:com.isotrol.impe3.core.impl.EmptyMultiStringParameters.java

public Set<String> getNames() {
    return ImmutableSet.of();
}

From source file:org.tendiwa.inflectible.GmEmpty.java

@Override
public ImmutableSet<Grammeme> grammemes() {
    return ImmutableSet.of();
}

From source file:com.facebook.buck.rules.FakeJavaLibraryRule.java

@Override
public ImmutableSet<String> getOutputClasspathEntries() {
    return ImmutableSet.of();
}

From source file:org.trnltk.morphology.morphotactics.SuffixGraphState.java

public SuffixGraphState(String name, SuffixGraphStateType suffixGraphStateType, PrimaryPos primaryPos,
        SecondaryPos secondaryPos) {//from   w ww . j  a v a2  s. com
    this.name = name;
    this.type = suffixGraphStateType;
    this.primaryPos = primaryPos;
    this.secondaryPos = secondaryPos;
    this.outEdges = ImmutableSet.of();
}

From source file:org.onosproject.openstacknetworking.impl.OpenstackNodeServiceAdapter.java

@Override
public Set<OpenstackNode> completeNodes(OpenstackNode.NodeType type) {
    return ImmutableSet.of();
}

From source file:com.facebook.buck.jvm.java.ConstantJavacProvider.java

@Override
public ImmutableSet<BuildRule> getBuildDeps(SourcePathRuleFinder ruleFinder) {
    return ImmutableSet.of();
}

From source file:org.fenixedu.academic.domain.accounting.EventTypes.java

public EventTypes() {
    this.types = ImmutableSet.of();
}

From source file:com.google.jimfs.AttributeProvider.java

/**
 * Returns the names of other providers that this provider inherits attributes from.
 */
public ImmutableSet<String> inherits() {
    return ImmutableSet.of();
}

From source file:org.codice.alliance.security.banner.marking.MarkingsValidationException.java

/**
 * Constructs a new exception with the specified detail message.  The
 * cause is not initialized, and may subsequently be initialized by
 * a call to {@link #initCause}./*w w w. j  av a 2 s  .  c  om*/
 *
 * @param message the detail message. The detail message is saved for
 *                later retrieval by the {@link #getMessage()} method.
 */
public MarkingsValidationException(String message, String inputMarkings) {
    super(message);
    this.inputMarkings = inputMarkings;
    errors = ImmutableSet.of();
}