Interface PVNameToKeyMapping

  • All Known Implementing Classes:
    ConvertPVNameToKey

    public interface PVNameToKeyMapping
    Interface for converting a PV name to something that forms the prefix of a chunk's key. See the default implementation for more details
    Author:
    mshankar
    • Method Detail

      • containsSiteSeparators

        boolean containsSiteSeparators​(String pvName)
        Return true if the given pvName contains any site specific separators.
        Parameters:
        pvName - The name of PV.
        Returns:
        boolean True or False
      • convertPVNameToKey

        String convertPVNameToKey​(String pvName)
      • breakIntoParts

        String[] breakIntoParts​(String pvName)
        Break a PV name into parts separated by the site specific separators For examples, ABC:123:DEF gets broken into [ABC, 123, DEF]
        Parameters:
        pvName - The name of PV.
        Returns:
        String Parts separated by separators