Example usage for org.apache.commons.collections SetUtils unmodifiableSet

List of usage examples for org.apache.commons.collections SetUtils unmodifiableSet

Introduction

In this page you can find the example usage for org.apache.commons.collections SetUtils unmodifiableSet.

Prototype

public static Set unmodifiableSet(Set set) 

Source Link

Document

Returns an unmodifiable set backed by the given set.

Usage

From source file:it.geosolutions.geobatch.destination.vulnerability.ResultStatsMap.java

public Set<String> getKeySet() {
    return SetUtils.unmodifiableSet(statsMap.keySet());
}