Enum Class TagObjectType
java.lang.Object
java.lang.Enum<TagObjectType>
com.inductiveautomation.ignition.common.tags.config.types.TagObjectType
- All Implemented Interfaces:
Serializable
,Comparable<TagObjectType>
,Constable
This enum represents the core set of object types in the tag system. Some of the types will have different or various
implementations, and thus the intention of this enum is not to lead to instantiation of particular objects, but to
provide a broad classification/base level info of the object type. since 8.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA single, "normal" tag.A folder contains other nodes, in a structure or under a type.A "node" is an entity that may have a value and may have children, usually under a tag.A "property" is a single value underneath a node.A tag provider that manages tags.A tag model is an entity that manages tags below it.An instance of a UdtType.A type definition for a complex tag type.This is generally an error state, meaning we don't have the right information about the node type. -
Method Summary
Modifier and TypeMethodDescriptionstatic TagObjectType
fromString
(String value) Returns the enum value represented by the string.boolean
static TagObjectType
Returns the enum constant of this class with the specified name.static TagObjectType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Unknown
This is generally an error state, meaning we don't have the right information about the node type. -
Property
A "property" is a single value underneath a node. -
Node
A "node" is an entity that may have a value and may have children, usually under a tag. -
Folder
A folder contains other nodes, in a structure or under a type. -
AtomicTag
A single, "normal" tag. -
UdtInstance
An instance of a UdtType. -
UdtType
A type definition for a complex tag type. -
TagModel
A tag model is an entity that manages tags below it. -
Provider
A tag provider that manages tags.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
Returns the enum value represented by the string. Unlike valueOf, this is not case sensitive, and will not return null- instead, Unknown will be returned. -
isComplexTag
public boolean isComplexTag()
-