Class TextList

    • Constructor Detail

      • TextList

        public TextList()
        Default constructor.
      • TextList

        public TextList​(String aValue)
        Parses the specified string representation to create a list of categories.
        Parameters:
        aValue - a string representation of a list of categories
      • TextList

        public TextList​(String[] textValues)
        Parameters:
        textValues - an array of text values
    • Method Detail

      • add

        public final boolean add​(String text)
        Add an address to the list.
        Parameters:
        text - the category to add
        Returns:
        true
        See Also:
        List.add(java.lang.Object)
      • isEmpty

        public final boolean isEmpty()
        Returns:
        boolean indicates if the list is empty
        See Also:
        List.isEmpty()
      • remove

        public final boolean remove​(String text)
        Remove a text from the list.
        Parameters:
        text - the text element to remove
        Returns:
        true if the list contained the specified text element
        See Also:
        List.remove(java.lang.Object)
      • size

        public final int size()
        Returns:
        the number of text elements in the list
        See Also:
        List.size()