Class DefaultBindingParameter<T>
java.lang.Object
com.inductiveautomation.vision.api.client.binding.DefaultBindingParameter<T>
- All Implemented Interfaces:
BindingParameter<T>
Default implementation of BindingParameter. Commonly a binding parameter will be a instance of this class or an
anonymous subclass of this class to override various functions such as
getOptionMap()
.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.inductiveautomation.vision.api.client.binding.BindingParameter
BindingParameter.BrowseHelper
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefaultBindingParameter
(String parameterName, String titleKey, T defaultValue) DefaultBindingParameter
(String parameterName, String titleKey, T defaultValue, Class<T> parameterType) -
Method Summary
Modifier and TypeMethodDescriptionAbstract implementation provides the following logic: If rawValue is null or blank, use the default value. else, useTypeUtilities.coerce(Object, Class)
to coerce rawValue into Tprotected static List<StringPair>
createBasicOptionMap
(String... options) Creates a basic option map out of a list of Stringsprotected static List<StringPair>
createModuleRPCOptionMap
(String moduleId, String function) Just likecreateRPCOptionMap(String)
, but uses module-based rpc instead.protected static List<StringPair>
createNameBasedEnumOptions
(Class<? extends Enum> enumClass, boolean includeNone) Creates an option map out of an enum, where the names of the enum are the intended value.protected static List<StringPair>
createOrdinalBasedEnumOptions
(Class<? extends Enum> enumClass, boolean includeNone) Creates an option map out of an enum, where the ordinals (or getIntValue's) of the enum are the intended value.protected static List<StringPair>
createRPCOptionMap
(String rpcCall) Calls through to the gateway via RPC to the given function call.Default implementation returns null.Provide a default value to use for this parameter if the user left the parameter blankDefault implementation returns null.The name of this parameter.The data type of the parameter.A resource bundle key to use as the param's title for display purposes.A resource bundle key to use for the GUI control's tooltipboolean
If true, the user will be allowed to bind this parameter's runtime value to tags and/or properties
-
Field Details
-
parameterName
-
titleKey
-
parameterType
-
defaultValue
-
-
Constructor Details
-
DefaultBindingParameter
-
DefaultBindingParameter
-
-
Method Details
-
createOrdinalBasedEnumOptions
protected static List<StringPair> createOrdinalBasedEnumOptions(Class<? extends Enum> enumClass, boolean includeNone) Creates an option map out of an enum, where the ordinals (or getIntValue's) of the enum are the intended value.- Parameters:
includeNone
- If true, a "None" option will be included whose value is empty string.
-
createNameBasedEnumOptions
protected static List<StringPair> createNameBasedEnumOptions(Class<? extends Enum> enumClass, boolean includeNone) Creates an option map out of an enum, where the names of the enum are the intended value.- Parameters:
includeNone
- If true, a "None" option will be included whose value is empty string.
-
createBasicOptionMap
Creates a basic option map out of a list of Strings -
createRPCOptionMap
Calls through to the gateway via RPC to the given function call. It is assumed that this function call returns a list of strings. For example, the rpc call "Alert.getStorageProfiles" would be an appropriate call, because it returns a list of strings. See also: -
createModuleRPCOptionMap
Just likecreateRPCOptionMap(String)
, but uses module-based rpc instead. -
coerce
Abstract implementation provides the following logic:- If rawValue is null or blank, use the default value.
- else, use
TypeUtilities.coerce(Object, Class)
to coerce rawValue into T
- Specified by:
coerce
in interfaceBindingParameter<T>
- Throws:
ClassCastException
- If this is thrown, the binding will not be executed, instead the property will receive a poor data quality.
-
getDefaultValue
Provide a default value to use for this parameter if the user left the parameter blank- Specified by:
getDefaultValue
in interfaceBindingParameter<T>
-
getOptionMap
Default implementation returns null. Meant to be overridden.- Specified by:
getOptionMap
in interfaceBindingParameter<T>
-
getBrowseHelper
Default implementation returns null. Meant to be overridden.- Specified by:
getBrowseHelper
in interfaceBindingParameter<T>
-
getParameterType
Description copied from interface:BindingParameter
The data type of the parameter. All parameters are treated as Strings during the design phase, but will be coerced to this type right before execution. Coersion is handled by theBindingParameter.coerce(String)
function.- Specified by:
getParameterType
in interfaceBindingParameter<T>
-
isBindingAllowed
public boolean isBindingAllowed()Description copied from interface:BindingParameter
If true, the user will be allowed to bind this parameter's runtime value to tags and/or properties- Specified by:
isBindingAllowed
in interfaceBindingParameter<T>
-
getParameterName
Description copied from interface:BindingParameter
The name of this parameter. This is the string that will be used to identify this parameter's value when executing the binding. Must be unique amongst the list of binding parameters for a given binding type.- Specified by:
getParameterName
in interfaceBindingParameter<T>
-
getTitleKey
Description copied from interface:BindingParameter
A resource bundle key to use as the param's title for display purposes.- Specified by:
getTitleKey
in interfaceBindingParameter<T>
-
getTooltipKey
Description copied from interface:BindingParameter
A resource bundle key to use for the GUI control's tooltip- Specified by:
getTooltipKey
in interfaceBindingParameter<T>
-