Class Maskelement

    • Constructor Detail

      • Maskelement

        public Maskelement()
    • Method Detail

      • enumerateMevalue

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

        public String getMename()
        Returns the value of field 'mename'. The field 'mename' has the following description: The mask element name can only be one of those specified above
        Returns:
        the value of field 'Mename'.
      • getMevalue

        public String getMevalue​(int index)
                          throws IndexOutOfBoundsException
        Method getMevalue.
        Parameters:
        index -
        Returns:
        the value of the java.lang.String at the given index
        Throws:
        IndexOutOfBoundsException - if the index given is outside the bounds of the collection
      • getMevalue

        public String[] getMevalue()
        Method getMevalue.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
      • getMevalueCollection

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

        public int getMevalueCount()
        Method getMevalueCount.
        Returns:
        the size of this collection
      • iterateMevalue

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

        public void removeAllMevalue()
      • removeMevalue

        public boolean removeMevalue​(String vMevalue)
        Method removeMevalue.
        Parameters:
        vMevalue -
        Returns:
        true if the object was removed from the collection.
      • removeMevalueAt

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

        public void setMename​(String mename)
        Sets the value of field 'mename'. The field 'mename' has the following description: The mask element name can only be one of those specified above
        Parameters:
        mename - the value of field 'mename'.
      • setMevalue

        public void setMevalue​(String[] vMevalueArray)
        Parameters:
        vMevalueArray -
      • setMevalue

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

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