All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.lang3.EnumUtils Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * 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 com.feilong.lib.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 */ public class EnumUtils{ /** *

* 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(final Class enumClass,final String enumName){ return getEnum(enumClass, enumName, null); } /** *

* Gets the enum for the class, returning {@code defaultEnum} 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 default enum * @param defaultEnum * the default enum * @return the enum, default enum if not found * @since 3.10 */ public static > E getEnum(final Class enumClass,final String enumName,final E defaultEnum){ if (enumName == null){ return defaultEnum; } try{ return Enum.valueOf(enumClass, enumName); }catch (final IllegalArgumentException ex){ return defaultEnum; } } /** *

* 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 and performs case insensitive matching of the 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 * @since 3.8 */ public static > E getEnumIgnoreCase(final Class enumClass,final String enumName){ return getEnumIgnoreCase(enumClass, enumName, null); } /** *

* Gets the enum for the class, returning {@code defaultEnum} if not found. *

* *

* This method differs from {@link Enum#valueOf} in that it does not throw an exception * for an invalid enum name and performs case insensitive matching of the 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 default enum * @param defaultEnum * the default enum * @return the enum, default enum if not found * @since 3.10 */ public static > E getEnumIgnoreCase(final Class enumClass,final String enumName,final E defaultEnum){ if (enumName == null || !enumClass.isEnum()){ return defaultEnum; } for (final E each : enumClass.getEnumConstants()){ if (each.name().equalsIgnoreCase(enumName)){ return each; } } return defaultEnum; } /** *

* 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(final Class enumClass){ return new ArrayList<>(Arrays.asList(enumClass.getEnumConstants())); } /** *

* 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(final Class enumClass){ final Map map = new LinkedHashMap<>(); for (final E e : enumClass.getEnumConstants()){ map.put(e.name(), e); } return map; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy