Example usage for org.apache.commons.collections4.set UnmodifiableSet UnmodifiableSet

List of usage examples for org.apache.commons.collections4.set UnmodifiableSet UnmodifiableSet

Introduction

In this page you can find the example usage for org.apache.commons.collections4.set UnmodifiableSet UnmodifiableSet.

Prototype

@SuppressWarnings("unchecked") 
private UnmodifiableSet(final Set<? extends E> set) 

Source Link

Document

Constructor that wraps (not copies).

Usage

From source file:net.ontopia.topicmaps.utils.ImportExportUtils.java

/**
 * Returns the loaded ImportExportServiceIF services.
 * @return the loaded ImportExportServiceIF services.
 *///www  .j a v a 2s  . c  om
@SuppressWarnings("unchecked")
public static Set<ImportExportServiceIF> getServices() {
    return UnmodifiableSet.unmodifiableSet(services);
}