Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.HashSet;

import java.util.Set;

public class Main {
    /**
     * <p>
     *    Creates an empty Set of String types.
     * </p>
     * 
     * @return Set of String types
     */
    public static Set<String> CreateEmptyStringSet() {
        return ((Set<String>) (new HashSet<String>()));
    }
}