Package io.mosip.mimoto.constant
Enum ModuleName
- java.lang.Object
-
- java.lang.Enum<ModuleName>
-
- io.mosip.mimoto.constant.ModuleName
-
- All Implemented Interfaces:
Serializable,Comparable<ModuleName>
public enum ModuleName extends Enum<ModuleName>
The Enum ModuleName.- Author:
- M1048399 Horteppa
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MIMOTO_SERVICE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ModuleName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIMOTO_SERVICE
public static final ModuleName MIMOTO_SERVICE
-
-
Method Detail
-
values
public static ModuleName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ModuleName c : ModuleName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-