Class SQLTagConstants
- java.lang.Object
-
- com.inductiveautomation.ignition.common.sqltags.model.SQLTagConstants
-
public class SQLTagConstants extends java.lang.Object
This class provides information and utilities concerning SQLTags, and Complex Types in particular.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
UDT_FUNC_DEPENDANT_COUNT
Call will return an integer tag with the number of dependants that a type has.static java.lang.String
UDT_ROOT
Providers who support UDTs will expose them through this tag pathstatic TagPath
UDT_ROOT_PATH
-
Constructor Summary
Constructors Constructor Description SQLTagConstants()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isTypePath(TagPath path)
Returns whether the path extends from the complex manager root path.static TagPath
makeNonTypePath(TagPath path)
static TagPath
makeTypePath(TagPath path)
Makes sure that the given path extends from the root path.
-
-
-
Field Detail
-
UDT_ROOT
public static final java.lang.String UDT_ROOT
Providers who support UDTs will expose them through this tag path- See Also:
- Constant Field Values
-
UDT_ROOT_PATH
public static final TagPath UDT_ROOT_PATH
-
UDT_FUNC_DEPENDANT_COUNT
public static final java.lang.String UDT_FUNC_DEPENDANT_COUNT
Call will return an integer tag with the number of dependants that a type has.- See Also:
- Constant Field Values
-
-
Method Detail
-
isTypePath
public static boolean isTypePath(TagPath path)
Returns whether the path extends from the complex manager root path.
-
makeTypePath
public static TagPath makeTypePath(TagPath path)
Makes sure that the given path extends from the root path. In other words, makes sure the first element is "_types_"
-
-