- java.lang.Object
-
- java.lang.Enum<FxControllerService.CACHING>
-
- org.tentackle.fx.FxControllerService.CACHING
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FxControllerService.CACHING>
- Enclosing class:
- FxControllerService
public static enum FxControllerService.CACHING extends java.lang.Enum<FxControllerService.CACHING>
Type of controller caching.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FxControllerService.CACHINGvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FxControllerService.CACHING[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO
public static final FxControllerService.CACHING NO
no caching.
-
YES
public static final FxControllerService.CACHING YES
controller is a singleton and cached.
-
PRELOAD
public static final FxControllerService.CACHING PRELOAD
controller is a singleton, cached and preloaded in background.
-
-
Method Detail
-
values
public static FxControllerService.CACHING[] 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 (FxControllerService.CACHING c : FxControllerService.CACHING.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FxControllerService.CACHING 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
-
-