org.apache.commons.lang3.EnumUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-lang3 Show documentation
Show all versions of commons-lang3 Show documentation
Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
standard as to justify existence in java.lang.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.commons.lang3;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Utility library to provide helper methods for Java enums.
*
* #ThreadSafe#
*
* @since 3.0
* @version $Id: EnumUtils.java 1088899 2011-04-05 05:31:27Z bayard $
*/
public class EnumUtils {
/**
* This constructor is public to permit tools that require a JavaBean
* instance to operate.
*/
public EnumUtils() {
}
/**
* Gets the {@code Map} of enums by name.
*
* This method is useful when you need a map of enums by name.
*
* @param the type of the enumeration
* @param enumClass the class of the enum to query, not null
* @return the modifiable map of enum names to enums, never null
*/
public static > Map getEnumMap(Class enumClass) {
Map map = new LinkedHashMap();
for (E e: enumClass.getEnumConstants()) {
map.put(e.name(), e);
}
return map;
}
/**
* Gets the {@code List} of enums.
*
* This method is useful when you need a list of enums rather than an array.
*
* @param the type of the enumeration
* @param enumClass the class of the enum to query, not null
* @return the modifiable list of enums, never null
*/
public static > List getEnumList(Class enumClass) {
return new ArrayList(Arrays.asList(enumClass.getEnumConstants()));
}
/**
* Checks if the specified name is a valid enum for the class.
*
* This method differs from {@link Enum#valueOf} in that checks if the name is
* a valid enum without needing to catch the exception.
*
* @param the type of the enumeration
* @param enumClass the class of the enum to query, not null
* @param enumName the enum name, null returns false
* @return true if the enum name is valid, otherwise false
*/
public static > boolean isValidEnum(Class enumClass, String enumName) {
if (enumName == null) {
return false;
}
try {
Enum.valueOf(enumClass, enumName);
return true;
} catch (IllegalArgumentException ex) {
return false;
}
}
/**
* Gets the enum for the class, returning {@code null} if not found.
*
* This method differs from {@link Enum#valueOf} in that it does not throw an exception
* for an invalid enum name.
*
* @param the type of the enumeration
* @param enumClass the class of the enum to query, not null
* @param enumName the enum name, null returns null
* @return the enum, null if not found
*/
public static > E getEnum(Class enumClass, String enumName) {
if (enumName == null) {
return null;
}
try {
return Enum.valueOf(enumClass, enumName);
} catch (IllegalArgumentException ex) {
return null;
}
}
}