EnumUtils.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. import java.util.ArrayList;
  19. import java.util.Arrays;
  20. import java.util.Collections;
  21. import java.util.EnumSet;
  22. import java.util.List;
  23. import java.util.Map;
  24. import java.util.Objects;
  25. import java.util.function.Function;
  26. import java.util.stream.Collectors;
  27. import java.util.stream.Stream;

  28. /**
  29.  * Utility library to provide helper methods for Java enums.
  30.  *
  31.  * <p>#ThreadSafe#</p>
  32.  *
  33.  * @since 3.0
  34.  */
  35. public class EnumUtils {

  36.     private static final String CANNOT_STORE_S_S_VALUES_IN_S_BITS = "Cannot store %s %s values in %s bits";
  37.     private static final String ENUM_CLASS_MUST_BE_DEFINED = "EnumClass must be defined.";
  38.     private static final String NULL_ELEMENTS_NOT_PERMITTED = "null elements not permitted";
  39.     private static final String S_DOES_NOT_SEEM_TO_BE_AN_ENUM_TYPE = "%s does not seem to be an Enum type";

  40.     /**
  41.      * Validate {@code enumClass}.
  42.      * @param <E> the type of the enumeration
  43.      * @param enumClass to check
  44.      * @return {@code enumClass}
  45.      * @throws NullPointerException if {@code enumClass} is {@code null}
  46.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class
  47.      * @since 3.2
  48.      */
  49.     private static <E extends Enum<E>> Class<E> asEnum(final Class<E> enumClass) {
  50.         Objects.requireNonNull(enumClass, ENUM_CLASS_MUST_BE_DEFINED);
  51.         Validate.isTrue(enumClass.isEnum(), S_DOES_NOT_SEEM_TO_BE_AN_ENUM_TYPE, enumClass);
  52.         return enumClass;
  53.     }

  54.     /**
  55.      * Validate that {@code enumClass} is compatible with representation in a {@code long}.
  56.      * @param <E> the type of the enumeration
  57.      * @param enumClass to check
  58.      * @return {@code enumClass}
  59.      * @throws NullPointerException if {@code enumClass} is {@code null}
  60.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class or has more than 64 values
  61.      * @since 3.0.1
  62.      */
  63.     private static <E extends Enum<E>> Class<E> checkBitVectorable(final Class<E> enumClass) {
  64.         final E[] constants = asEnum(enumClass).getEnumConstants();
  65.         Validate.isTrue(constants.length <= Long.SIZE, CANNOT_STORE_S_S_VALUES_IN_S_BITS,
  66.             Integer.valueOf(constants.length), enumClass.getSimpleName(), Integer.valueOf(Long.SIZE));

  67.         return enumClass;
  68.     }

  69.     /**
  70.      * Creates a long bit vector representation of the given array of Enum values.
  71.      *
  72.      * <p>This generates a value that is usable by {@link EnumUtils#processBitVector}.</p>
  73.      *
  74.      * <p>Do not use this method if you have more than 64 values in your Enum, as this
  75.      * would create a value greater than a long can hold.</p>
  76.      *
  77.      * @param enumClass the class of the enum we are working with, not {@code null}
  78.      * @param values    the values we want to convert, not {@code null}
  79.      * @param <E>       the type of the enumeration
  80.      * @return a long whose value provides a binary representation of the given set of enum values.
  81.      * @throws NullPointerException if {@code enumClass} or {@code values} is {@code null}
  82.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class or has more than 64 values
  83.      * @since 3.0.1
  84.      * @see #generateBitVectors(Class, Iterable)
  85.      */
  86.     @SafeVarargs
  87.     public static <E extends Enum<E>> long generateBitVector(final Class<E> enumClass, final E... values) {
  88.         Validate.noNullElements(values);
  89.         return generateBitVector(enumClass, Arrays.asList(values));
  90.     }

  91.     /**
  92.      * Creates a long bit vector representation of the given subset of an Enum.
  93.      *
  94.      * <p>This generates a value that is usable by {@link EnumUtils#processBitVector}.</p>
  95.      *
  96.      * <p>Do not use this method if you have more than 64 values in your Enum, as this
  97.      * would create a value greater than a long can hold.</p>
  98.      *
  99.      * @param enumClass the class of the enum we are working with, not {@code null}
  100.      * @param values    the values we want to convert, not {@code null}, neither containing {@code null}
  101.      * @param <E>       the type of the enumeration
  102.      * @return a long whose value provides a binary representation of the given set of enum values.
  103.      * @throws NullPointerException if {@code enumClass} or {@code values} is {@code null}
  104.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class or has more than 64 values,
  105.      *                                  or if any {@code values} {@code null}
  106.      * @since 3.0.1
  107.      * @see #generateBitVectors(Class, Iterable)
  108.      */
  109.     public static <E extends Enum<E>> long generateBitVector(final Class<E> enumClass, final Iterable<? extends E> values) {
  110.         checkBitVectorable(enumClass);
  111.         Objects.requireNonNull(values, "values");
  112.         long total = 0;
  113.         for (final E constant : values) {
  114.             Objects.requireNonNull(constant, NULL_ELEMENTS_NOT_PERMITTED);
  115.             total |= 1L << constant.ordinal();
  116.         }
  117.         return total;
  118.     }

  119.     /**
  120.      * Creates a bit vector representation of the given subset of an Enum using as many {@code long}s as needed.
  121.      *
  122.      * <p>This generates a value that is usable by {@link EnumUtils#processBitVectors}.</p>
  123.      *
  124.      * <p>Use this method if you have more than 64 values in your Enum.</p>
  125.      *
  126.      * @param enumClass the class of the enum we are working with, not {@code null}
  127.      * @param values    the values we want to convert, not {@code null}, neither containing {@code null}
  128.      * @param <E>       the type of the enumeration
  129.      * @return a long[] whose values provide a binary representation of the given set of enum values
  130.      *         with the least significant digits rightmost.
  131.      * @throws NullPointerException if {@code enumClass} or {@code values} is {@code null}
  132.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class, or if any {@code values} {@code null}
  133.      * @since 3.2
  134.      */
  135.     @SafeVarargs
  136.     public static <E extends Enum<E>> long[] generateBitVectors(final Class<E> enumClass, final E... values) {
  137.         asEnum(enumClass);
  138.         Validate.noNullElements(values);
  139.         final EnumSet<E> condensed = EnumSet.noneOf(enumClass);
  140.         Collections.addAll(condensed, values);
  141.         final long[] result = new long[(enumClass.getEnumConstants().length - 1) / Long.SIZE + 1];
  142.         for (final E value : condensed) {
  143.             result[value.ordinal() / Long.SIZE] |= 1L << value.ordinal() % Long.SIZE;
  144.         }
  145.         ArrayUtils.reverse(result);
  146.         return result;
  147.     }

  148.     /**
  149.      * Creates a bit vector representation of the given subset of an Enum using as many {@code long}s as needed.
  150.      *
  151.      * <p>This generates a value that is usable by {@link EnumUtils#processBitVectors}.</p>
  152.      *
  153.      * <p>Use this method if you have more than 64 values in your Enum.</p>
  154.      *
  155.      * @param enumClass the class of the enum we are working with, not {@code null}
  156.      * @param values    the values we want to convert, not {@code null}, neither containing {@code null}
  157.      * @param <E>       the type of the enumeration
  158.      * @return a long[] whose values provide a binary representation of the given set of enum values
  159.      *         with the least significant digits rightmost.
  160.      * @throws NullPointerException if {@code enumClass} or {@code values} is {@code null}
  161.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class, or if any {@code values} {@code null}
  162.      * @since 3.2
  163.      */
  164.     public static <E extends Enum<E>> long[] generateBitVectors(final Class<E> enumClass, final Iterable<? extends E> values) {
  165.         asEnum(enumClass);
  166.         Objects.requireNonNull(values, "values");
  167.         final EnumSet<E> condensed = EnumSet.noneOf(enumClass);
  168.         values.forEach(constant -> condensed.add(Objects.requireNonNull(constant, NULL_ELEMENTS_NOT_PERMITTED)));
  169.         final long[] result = new long[(enumClass.getEnumConstants().length - 1) / Long.SIZE + 1];
  170.         for (final E value : condensed) {
  171.             result[value.ordinal() / Long.SIZE] |= 1L << value.ordinal() % Long.SIZE;
  172.         }
  173.         ArrayUtils.reverse(result);
  174.         return result;
  175.     }

  176.     /**
  177.      * Gets the enum for the class, returning {@code null} if not found.
  178.      *
  179.      * <p>This method differs from {@link Enum#valueOf} in that it does not throw an exception
  180.      * for an invalid enum name.</p>
  181.      *
  182.      * @param <E> the type of the enumeration
  183.      * @param enumClass  the class of the enum to query, not null
  184.      * @param enumName   the enum name, null returns null
  185.      * @return the enum, null if not found
  186.      */
  187.     public static <E extends Enum<E>> E getEnum(final Class<E> enumClass, final String enumName) {
  188.         return getEnum(enumClass, enumName, null);
  189.     }

  190.     /**
  191.      * Gets the enum for the class, returning {@code defaultEnum} if not found.
  192.      *
  193.      * <p>This method differs from {@link Enum#valueOf} in that it does not throw an exception
  194.      * for an invalid enum name.</p>
  195.      *
  196.      * @param <E> the type of the enumeration
  197.      * @param enumClass   the class of the enum to query, not null
  198.      * @param enumName    the enum name, null returns default enum
  199.      * @param defaultEnum the default enum
  200.      * @return the enum, default enum if not found
  201.      * @since 3.10
  202.      */
  203.     public static <E extends Enum<E>> E getEnum(final Class<E> enumClass, final String enumName, final E defaultEnum) {
  204.         if (enumName == null) {
  205.             return defaultEnum;
  206.         }
  207.         try {
  208.             return Enum.valueOf(enumClass, enumName);
  209.         } catch (final IllegalArgumentException ex) {
  210.             return defaultEnum;
  211.         }
  212.     }

  213.     /**
  214.      * Gets the enum for the class, returning {@code null} if not found.
  215.      *
  216.      * <p>This method differs from {@link Enum#valueOf} in that it does not throw an exception
  217.      * for an invalid enum name and performs case insensitive matching of the name.</p>
  218.      *
  219.      * @param <E>         the type of the enumeration
  220.      * @param enumClass   the class of the enum to query, not null
  221.      * @param enumName    the enum name, null returns null
  222.      * @return the enum, null if not found
  223.      * @since 3.8
  224.      */
  225.     public static <E extends Enum<E>> E getEnumIgnoreCase(final Class<E> enumClass, final String enumName) {
  226.         return getEnumIgnoreCase(enumClass, enumName, null);
  227.     }

  228.     /**
  229.      * Gets the enum for the class, returning {@code defaultEnum} if not found.
  230.      *
  231.      * <p>This method differs from {@link Enum#valueOf} in that it does not throw an exception
  232.      * for an invalid enum name and performs case insensitive matching of the name.</p>
  233.      *
  234.      * @param <E>         the type of the enumeration
  235.      * @param enumClass   the class of the enum to query, not null
  236.      * @param enumName    the enum name, null returns default enum
  237.      * @param defaultEnum the default enum
  238.      * @return the enum, default enum if not found
  239.      * @since 3.10
  240.      */
  241.     public static <E extends Enum<E>> E getEnumIgnoreCase(final Class<E> enumClass, final String enumName,
  242.         final E defaultEnum) {
  243.         return getFirstEnumIgnoreCase(enumClass, enumName, Enum::name, defaultEnum);
  244.     }

  245.     /**
  246.      * Gets the {@link List} of enums.
  247.      *
  248.      * <p>This method is useful when you need a list of enums rather than an array.</p>
  249.      *
  250.      * @param <E> the type of the enumeration
  251.      * @param enumClass  the class of the enum to query, not null
  252.      * @return the modifiable list of enums, never null
  253.      */
  254.     public static <E extends Enum<E>> List<E> getEnumList(final Class<E> enumClass) {
  255.         return new ArrayList<>(Arrays.asList(enumClass.getEnumConstants()));
  256.     }

  257.     /**
  258.      * Gets the {@link Map} of enums by name.
  259.      *
  260.      * <p>This method is useful when you need a map of enums by name.</p>
  261.      *
  262.      * @param <E> the type of the enumeration
  263.      * @param enumClass  the class of the enum to query, not null
  264.      * @return the modifiable map of enum names to enums, never null
  265.      */
  266.     public static <E extends Enum<E>> Map<String, E> getEnumMap(final Class<E> enumClass) {
  267.         return getEnumMap(enumClass, E::name);
  268.     }

  269.     /**
  270.      * Gets the {@link Map} of enums by name.
  271.      *
  272.      * <p>
  273.      * This method is useful when you need a map of enums by name.
  274.      * </p>
  275.      *
  276.      * @param <E>         the type of enumeration
  277.      * @param <K>         the type of the map key
  278.      * @param enumClass   the class of the enum to query, not null
  279.      * @param keyFunction the function to query for the key, not null
  280.      * @return the modifiable map of enums, never null
  281.      * @since 3.13.0
  282.      */
  283.     public static <E extends Enum<E>, K> Map<K, E> getEnumMap(final Class<E> enumClass, final Function<E, K> keyFunction) {
  284.         return Stream.of(enumClass.getEnumConstants()).collect(Collectors.toMap(keyFunction::apply, Function.identity()));
  285.     }

  286.     /**
  287.      * Gets the enum for the class in a system property, returning {@code defaultEnum} if not found.
  288.      *
  289.      * <p>
  290.      * This method differs from {@link Enum#valueOf} in that it does not throw an exception for an invalid enum name.
  291.      * </p>
  292.      *
  293.      * @param <E> the type of the enumeration
  294.      * @param enumClass the class of the enum to query, not null
  295.      * @param propName the system property key for the enum name, null returns default enum
  296.      * @param defaultEnum the default enum
  297.      * @return the enum, default enum if not found
  298.      * @since 3.13.0
  299.      */
  300.     public static <E extends Enum<E>> E getEnumSystemProperty(final Class<E> enumClass, final String propName,
  301.         final E defaultEnum) {
  302.         return enumClass == null || propName == null ? defaultEnum
  303.             : getEnum(enumClass, System.getProperty(propName), defaultEnum);
  304.     }

  305.     /**
  306.      * Gets the enum for the class, returning {@code defaultEnum} if not found.
  307.      *
  308.      * <p>This method differs from {@link Enum#valueOf} in that it does not throw an exception
  309.      * for an invalid enum name and performs case insensitive matching of the name.</p>
  310.      *
  311.      * @param <E>         the type of the enumeration
  312.      * @param enumClass   the class of the enum to query, not null
  313.      * @param enumName    the enum name, null returns default enum
  314.      * @param stringFunction the function that gets the string for an enum for comparison to {@code enumName}.
  315.      * @param defaultEnum the default enum
  316.      * @return the enum, default enum if not found
  317.      * @since 3.13.0
  318.      */
  319.     public static <E extends Enum<E>> E getFirstEnumIgnoreCase(final Class<E> enumClass, final String enumName, final Function<E, String> stringFunction,
  320.         final E defaultEnum) {
  321.         if (enumName == null || !enumClass.isEnum()) {
  322.             return defaultEnum;
  323.         }
  324.         return Stream.of(enumClass.getEnumConstants()).filter(e -> enumName.equalsIgnoreCase(stringFunction.apply(e))).findFirst().orElse(defaultEnum);
  325.     }

  326.     /**
  327.      * Checks if the specified name is a valid enum for the class.
  328.      *
  329.      * <p>This method differs from {@link Enum#valueOf} in that it checks if the name is
  330.      * a valid enum without needing to catch the exception.</p>
  331.      *
  332.      * @param <E> the type of the enumeration
  333.      * @param enumClass  the class of the enum to query, not null
  334.      * @param enumName   the enum name, null returns false
  335.      * @return true if the enum name is valid, otherwise false
  336.      */
  337.     public static <E extends Enum<E>> boolean isValidEnum(final Class<E> enumClass, final String enumName) {
  338.         return getEnum(enumClass, enumName) != null;
  339.     }

  340.     /**
  341.      * Checks if the specified name is a valid enum for the class.
  342.      *
  343.      * <p>This method differs from {@link Enum#valueOf} in that it checks if the name is
  344.      * a valid enum without needing to catch the exception
  345.      * and performs case insensitive matching of the name.</p>
  346.      *
  347.      * @param <E> the type of the enumeration
  348.      * @param enumClass  the class of the enum to query, not null
  349.      * @param enumName   the enum name, null returns false
  350.      * @return true if the enum name is valid, otherwise false
  351.      * @since 3.8
  352.      */
  353.     public static <E extends Enum<E>> boolean isValidEnumIgnoreCase(final Class<E> enumClass, final String enumName) {
  354.         return getEnumIgnoreCase(enumClass, enumName) != null;
  355.     }

  356.     /**
  357.      * Convert a long value created by {@link EnumUtils#generateBitVector} into the set of
  358.      * enum values that it represents.
  359.      *
  360.      * <p>If you store this value, beware any changes to the enum that would affect ordinal values.</p>
  361.      * @param enumClass the class of the enum we are working with, not {@code null}
  362.      * @param value     the long value representation of a set of enum values
  363.      * @param <E>       the type of the enumeration
  364.      * @return a set of enum values
  365.      * @throws NullPointerException if {@code enumClass} is {@code null}
  366.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class or has more than 64 values
  367.      * @since 3.0.1
  368.      */
  369.     public static <E extends Enum<E>> EnumSet<E> processBitVector(final Class<E> enumClass, final long value) {
  370.         checkBitVectorable(enumClass).getEnumConstants();
  371.         return processBitVectors(enumClass, value);
  372.     }

  373.     /**
  374.      * Convert a {@code long[]} created by {@link EnumUtils#generateBitVectors} into the set of
  375.      * enum values that it represents.
  376.      *
  377.      * <p>If you store this value, beware any changes to the enum that would affect ordinal values.</p>
  378.      * @param enumClass the class of the enum we are working with, not {@code null}
  379.      * @param values     the long[] bearing the representation of a set of enum values, the least significant digits rightmost, not {@code null}
  380.      * @param <E>       the type of the enumeration
  381.      * @return a set of enum values
  382.      * @throws NullPointerException if {@code enumClass} is {@code null}
  383.      * @throws IllegalArgumentException if {@code enumClass} is not an enum class
  384.      * @since 3.2
  385.      */
  386.     public static <E extends Enum<E>> EnumSet<E> processBitVectors(final Class<E> enumClass, final long... values) {
  387.         final EnumSet<E> results = EnumSet.noneOf(asEnum(enumClass));
  388.         final long[] lvalues = ArrayUtils.clone(Objects.requireNonNull(values, "values"));
  389.         ArrayUtils.reverse(lvalues);
  390.         for (final E constant : enumClass.getEnumConstants()) {
  391.             final int block = constant.ordinal() / Long.SIZE;
  392.             if (block < lvalues.length && (lvalues[block] & 1L << constant.ordinal() % Long.SIZE) != 0) {
  393.                 results.add(constant);
  394.             }
  395.         }
  396.         return results;
  397.     }

  398.     /**
  399.      * This constructor is public to permit tools that require a JavaBean
  400.      * instance to operate.
  401.      *
  402.      * @deprecated TODO Make private in 4.0.
  403.      */
  404.     @Deprecated
  405.     public EnumUtils() {
  406.         // empty
  407.     }
  408. }