Interface StringSelector<T>

  • Type Parameters:
    T -

    public interface StringSelector<T>
    Selects a string attribute of a BpmElement or BpmProcess
    Since:
    9.1
    API:
    This is a public API.
    • Method Detail

      • isEqualTo

        T isEqualTo​(String value)
        String attribute is equal to the given value
        Parameters:
        value -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • isEqualToIgnoringCase

        T isEqualToIgnoringCase​(String value)
        String attribute is equal ignoring case to the given value
        Parameters:
        value -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • contains

        T contains​(String part)
        String attribute contains the given part
        Parameters:
        part -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • containsIgnoringCase

        T containsIgnoringCase​(String part)
        String attribute contains ignoring case the given part
        Parameters:
        part -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • endsWith

        T endsWith​(String suffix)
        String attribute ends with the given suffix
        Parameters:
        suffix -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • endsWithIgnoringCase

        T endsWithIgnoringCase​(String suffix)
        String attribute ends with ignoring case the given suffix
        Parameters:
        suffix -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • startsWith

        T startsWith​(String prefix)
        String attribute starts with the given prefix
        Parameters:
        prefix -
        Returns:
        selected element
        API:
        This public API is available in Java.
      • startsWithIgnoringCase

        T startsWithIgnoringCase​(String prefix)
        String attribute starts with ignoring case the given prefix
        Parameters:
        prefix -
        Returns:
        selected element
        API:
        This public API is available in Java.