- java.lang.Object
-
- java.lang.Enum<FxControllerService.BINDING>
-
- org.tentackle.fx.FxControllerService.BINDING
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FxControllerService.BINDING>
- Enclosing class:
- FxControllerService
public static enum FxControllerService.BINDING extends java.lang.Enum<FxControllerService.BINDING>
Type of binding.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_INHERITEDinclude inherited components and bindables.BINDABLE_INHERITEDinclude inherited bindables.COMPONENT_INHERITEDinclude inherited components.NOno binding.YESstandard binding.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FxControllerService.BINDINGvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FxControllerService.BINDING[]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.BINDING NO
no binding.
-
YES
public static final FxControllerService.BINDING YES
standard binding.
-
COMPONENT_INHERITED
public static final FxControllerService.BINDING COMPONENT_INHERITED
include inherited components.
-
BINDABLE_INHERITED
public static final FxControllerService.BINDING BINDABLE_INHERITED
include inherited bindables.
-
ALL_INHERITED
public static final FxControllerService.BINDING ALL_INHERITED
include inherited components and bindables.
-
-
Method Detail
-
values
public static FxControllerService.BINDING[] 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.BINDING c : FxControllerService.BINDING.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.BINDING 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
-
-