Class SimplifiedTagPath

  • All Implemented Interfaces:
    Path, TagPath, java.io.Serializable, java.lang.Comparable<TagPath>

    @Deprecated
    public class SimplifiedTagPath
    extends AbstractTagPath
    Deprecated.
    A wrapper around a delegate TagPath that strips the path of its property, for use with managing subscriptions to tags.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      TagPath getChildPath​(java.lang.String nextId)
      Deprecated.
      Returns a path below the current path.
      java.lang.String getItemName()
      Deprecated.
      Returns the name of the item at the end of the path that this path points to.
      java.lang.String getLastPathComponent()
      Deprecated.
      Convenience function to return the last path element.
      TagPath getParentPath()
      Deprecated.
      Returns the path to this tag's parent folder
      java.lang.String getPathComponent​(int i)
      Deprecated.
      Returns the path element at the specified location.
      int getPathLength()
      Deprecated.
      Returns the number of elements in the path, which can be retrieved through getPathComponent().
      TagProp getProperty()
      Deprecated.
      Returns the type of property in the tag that this path is referencing.
      java.lang.String getSource()
      Deprecated.
      Returns the source for this tag path.
      java.lang.String getSystem()
      Deprecated.
      Returns which system this tag is being driven by.
      boolean isAncestorOf​(Path child)
      Deprecated.
      Returns whether the provided path is a child path of this one.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface com.inductiveautomation.ignition.common.sqltags.model.TagPath

        upgrade
    • Constructor Detail

      • SimplifiedTagPath

        public SimplifiedTagPath​(TagPath delegate)
        Deprecated.
    • Method Detail

      • getProperty

        public TagProp getProperty()
        Deprecated.
        Description copied from interface: TagPath
        Returns the type of property in the tag that this path is referencing.
      • getSource

        public java.lang.String getSource()
        Deprecated.
        Description copied from interface: TagPath
        Returns the source for this tag path. Some tag paths don't have a source, indicating that they may be a relative, or they may wish to use a default source.
      • getSystem

        public java.lang.String getSystem()
        Deprecated.
        Description copied from interface: TagPath
        Returns which system this tag is being driven by. If null, the system name won't be used to distinguish tags.
      • getChildPath

        public TagPath getChildPath​(java.lang.String nextId)
        Deprecated.
        Description copied from interface: TagPath
        Returns a path below the current path.
      • getItemName

        public java.lang.String getItemName()
        Deprecated.
        Description copied from interface: TagPath
        Returns the name of the item at the end of the path that this path points to. This will be a tag name or a folder name.
      • getLastPathComponent

        public java.lang.String getLastPathComponent()
        Deprecated.
        Description copied from interface: Path
        Convenience function to return the last path element.
      • getParentPath

        public TagPath getParentPath()
        Deprecated.
        Description copied from interface: TagPath
        Returns the path to this tag's parent folder
      • getPathComponent

        public java.lang.String getPathComponent​(int i)
        Deprecated.
        Description copied from interface: Path
        Returns the path element at the specified location.
      • getPathLength

        public int getPathLength()
        Deprecated.
        Description copied from interface: Path
        Returns the number of elements in the path, which can be retrieved through getPathComponent().
      • isAncestorOf

        public boolean isAncestorOf​(Path child)
        Deprecated.
        Description copied from interface: Path
        Returns whether the provided path is a child path of this one.
        Specified by:
        isAncestorOf in interface Path
        Overrides:
        isAncestorOf in class AbstractTagPath