Enum MenuBootstrapCommand.BootType
- java.lang.Object
-
- java.lang.Enum<MenuBootstrapCommand.BootType>
-
- com.thecoderscorner.menu.remote.commands.MenuBootstrapCommand.BootType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MenuBootstrapCommand.BootType>
- Enclosing class:
- MenuBootstrapCommand
public static enum MenuBootstrapCommand.BootType extends java.lang.Enum<MenuBootstrapCommand.BootType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MenuBootstrapCommand.BootTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MenuBootstrapCommand.BootType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final MenuBootstrapCommand.BootType START
-
END
public static final MenuBootstrapCommand.BootType END
-
-
Method Detail
-
values
public static MenuBootstrapCommand.BootType[] 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 (MenuBootstrapCommand.BootType c : MenuBootstrapCommand.BootType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MenuBootstrapCommand.BootType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-