Package org.nuiton.jaxx.runtime.init
Enum UIInitializerContext.Init
- java.lang.Object
-
- java.lang.Enum<UIInitializerContext.Init>
-
- org.nuiton.jaxx.runtime.init.UIInitializerContext.Init
-
- All Implemented Interfaces:
Serializable,Comparable<UIInitializerContext.Init>
- Enclosing class:
- UIInitializerContext<U extends JAXXObject>
public static enum UIInitializerContext.Init extends Enum<UIInitializerContext.Init>
Created on 09/12/2020.- Since:
- 8.0.1
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIRST_PASSSECOND_PASS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UIInitializerContext.InitvalueOf(String name)Returns the enum constant of this type with the specified name.static UIInitializerContext.Init[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST_PASS
public static final UIInitializerContext.Init FIRST_PASS
-
SECOND_PASS
public static final UIInitializerContext.Init SECOND_PASS
-
-
Method Detail
-
values
public static UIInitializerContext.Init[] 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 (UIInitializerContext.Init c : UIInitializerContext.Init.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UIInitializerContext.Init 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
-
-