Package adalid.core.enums
Enum HelpFileAutoName
- java.lang.Object
-
- java.lang.Enum<HelpFileAutoName>
-
- adalid.core.enums.HelpFileAutoName
-
- All Implemented Interfaces:
Serializable,Comparable<HelpFileAutoName>
public enum HelpFileAutoName extends Enum<HelpFileAutoName>
- Author:
- Jorge Campins
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISPLAYENTITYMETANONEUNSPECIFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HelpFileAutoNamevalueOf(String name)Returns the enum constant of this type with the specified name.static HelpFileAutoName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final HelpFileAutoName UNSPECIFIED
-
NONE
public static final HelpFileAutoName NONE
-
ENTITY
public static final HelpFileAutoName ENTITY
-
DISPLAY
public static final HelpFileAutoName DISPLAY
-
META
public static final HelpFileAutoName META
-
-
Method Detail
-
values
public static HelpFileAutoName[] 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 (HelpFileAutoName c : HelpFileAutoName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HelpFileAutoName 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
-
-