Class EventReceipt

    • Constructor Detail

      • EventReceipt

        public EventReceipt()
    • Method Detail

      • enumerateUuid

        public Enumeration<String> enumerateUuid()
        Method enumerateUuid.
        Returns:
        an Enumeration over all possible elements of this collection
      • getUuid

        public String[] getUuid()
        Method getUuid.Returns the contents of the collection in an Array.

        Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.

        Returns:
        this collection as an Array
      • getUuidCollection

        public List<String> getUuidCollection()
        Method getUuidCollection.Returns a reference to '_uuidList'. No type checking is performed on any modifications to the Vector.
        Returns:
        a reference to the Vector backing this class
      • getUuidCount

        public int getUuidCount()
        Method getUuidCount.
        Returns:
        the size of this collection
      • iterateUuid

        public Iterator<String> iterateUuid()
        Method iterateUuid.
        Returns:
        an Iterator over all possible elements in this collection
      • removeAllUuid

        public void removeAllUuid()
      • removeUuid

        public boolean removeUuid​(String vUuid)
        Method removeUuid.
        Parameters:
        vUuid -
        Returns:
        true if the object was removed from the collection.
      • removeUuidAt

        public String removeUuidAt​(int index)
        Method removeUuidAt.
        Parameters:
        index -
        Returns:
        the element removed from the collection
      • setUuid

        public void setUuid​(String[] vUuidArray)
        Parameters:
        vUuidArray -
      • setUuid

        public void setUuid​(List<String> vUuidList)
        Sets the value of '_uuidList' by copying the given Vector. All elements will be checked for type safety.
        Parameters:
        vUuidList - the Vector to copy.
      • setUuidCollection

        public void setUuidCollection​(List<String> uuidList)
        Deprecated.
        Sets the value of '_uuidList' by setting it to the given Vector. No type checking is performed.
        Parameters:
        uuidList - the Vector to set.