blob: 4543be3cf9cb24f82ddbc694f3f0bfd6003829c9 [file] [log] [blame]
/*
* Copyright 2000-2010 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.openapi.roots.libraries;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import java.util.HashMap;
import java.util.Map;
/**
* @author nik
*/
public class LibraryKind {
private final String myKindId;
private static final Map<String, LibraryKind> ourAllKinds = new HashMap<String, LibraryKind>();
/**
* @param kindId must be unique among all {@link com.intellij.openapi.roots.libraries.LibraryType} and {@link com.intellij.openapi.roots.libraries.LibraryPresentationProvider} implementations
*/
public LibraryKind(@NotNull @NonNls String kindId) {
myKindId = kindId;
if (ourAllKinds.containsKey(kindId)) {
throw new IllegalArgumentException("Kind " + kindId + " is not unique");
}
ourAllKinds.put(kindId, this);
}
public final String getKindId() {
return myKindId;
}
@Override
public String toString() {
return "LibraryKind:" + myKindId;
}
/**
* @param kindId must be unique among all {@link LibraryType} and {@link LibraryPresentationProvider} implementations
* @return new {@link LibraryKind} instance
*/
public static LibraryKind create(@NotNull @NonNls String kindId) {
return new LibraryKind(kindId);
}
public static LibraryKind findById(String kindId) {
return ourAllKinds.get(kindId);
}
}