Java org.apache.commons.lang.enums EnumUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang.enums EnumUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang.enums EnumUtils.

The text is from its open source code.

Method

EnumgetEnum(Class enumClass, String name)

Gets an Enum object by class and name.

ValuedEnumgetEnum(Class enumClass, int value)

Gets a ValuedEnum object by class and value.

ListgetEnumList(Class enumClass)

Gets the List of Enum objects using the Enum class.

The list is in the order that the objects were created (source code order).

If the requested class has no enum objects an empty List is returned.

Iteratoriterator(Class enumClass)

Gets an Iterator over the Enum objects in an Enum class.

The iterator is in the order that the objects were created (source code order).

If the requested class has no enum objects an empty Iterator is returned.