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

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

Introduction

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

Prototype

public static <K, V> ImmutableMap<K, V> of() 

Source Link

Usage

From source file:org.apache.beam.sdk.extensions.sql.impl.BeamCalciteTable.java

public static BeamCalciteTable of(BeamSqlTable table) {
    return new BeamCalciteTable(table, ImmutableMap.of());
}

From source file:ch.raffael.contracts.processor.cel.skeletons.Skeleton.java

Skeleton(Class<?> skeletonClass) {
    this.skeletonClass = skeletonClass;
    typeToken = TypeToken.of(skeletonClass);
    asmType = Type.getType(skeletonClass);
    lineNumbers = ((SkeletonClassLoader) skeletonClass.getClassLoader()).lineNumbers.getOrDefault(skeletonClass,
            ImmutableMap.of());
}

From source file:org.apache.druid.java.util.emitter.service.ServiceEmitter.java

public ServiceEmitter(String service, String host, Emitter emitter) {
    this(service, host, emitter, ImmutableMap.of());
}

From source file:org.opendaylight.mdsal.dom.broker.ProducerLayout.java

static ProducerLayout create(final Map<DOMDataTreeIdentifier, DOMDataTreeShard> shardMap) {
    return new ProducerLayout(shardMap, mapIdsToProducer(shardMap), ImmutableMap.of());
}

From source file:com.basistech.rosette.dm.BaseAttribute.java

protected BaseAttribute() {
    this.extendedProperties = ImmutableMap.of();
}

From source file:com.isotrol.impe3.nr.api.EmptyNodeFilter.java

@Override
public Map<String, FilterType> sets() {
    return ImmutableMap.of();
}

From source file:com.android.build.gradle.internal.pipeline.ImmutableDirectoryInput.java

ImmutableDirectoryInput(@NonNull String name, @NonNull File file, @NonNull Set<ContentType> contentTypes,
        @NonNull Set<Scope> scopes) {
    super(name, file, contentTypes, scopes);
    this.changedFiles = ImmutableMap.of();
}