Module com.iamsoft.util.ui
Package com.iamsoft.util.ui.javafx.table
Enum JpaLazyLoadingSupport.State
- java.lang.Object
-
- java.lang.Enum<JpaLazyLoadingSupport.State>
-
- com.iamsoft.util.ui.javafx.table.JpaLazyLoadingSupport.State
-
- All Implemented Interfaces:
Serializable
,Comparable<JpaLazyLoadingSupport.State>
- Enclosing class:
- JpaLazyLoadingSupport<E>
public static enum JpaLazyLoadingSupport.State extends Enum<JpaLazyLoadingSupport.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEANING_UP
IDLE
PERSISTING
REMOVING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JpaLazyLoadingSupport.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static JpaLazyLoadingSupport.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDLE
public static final JpaLazyLoadingSupport.State IDLE
-
PERSISTING
public static final JpaLazyLoadingSupport.State PERSISTING
-
REMOVING
public static final JpaLazyLoadingSupport.State REMOVING
-
CLEANING_UP
public static final JpaLazyLoadingSupport.State CLEANING_UP
-
-
Method Detail
-
values
public static JpaLazyLoadingSupport.State[] 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 (JpaLazyLoadingSupport.State c : JpaLazyLoadingSupport.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JpaLazyLoadingSupport.State 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
-
-