Class IndexedAttributeHolder.IndexedAttributeAccessorImpl

    • Constructor Detail

      • IndexedAttributeAccessorImpl

        protected IndexedAttributeAccessorImpl()
    • Method Detail

      • getAttribute

        public Object getAttribute​(int index)
        Internal method for dynamic attribute support. Return the value of the attribute by index.
        Specified by:
        getAttribute in interface IndexedAttributeAccessor
        Parameters:
        index - the attribute index
        Returns:
        the value of the attribute by index
      • getAttribute

        public Object getAttribute​(int index,
                                   NullaryFunction initializer)
        Internal method for dynamic attribute support. Return the value of the attribute by index. If the attribute with such index is not set, set it to the default value, using the initializer, and return the default.
        Specified by:
        getAttribute in interface IndexedAttributeAccessor
        Parameters:
        index - the attribute index
        initializer - the default value NullaryFunction
        Returns:
        the value of the attribute by index
      • setAttribute

        public void setAttribute​(int index,
                                 Object value)
        Internal method for dynamic attribute support. Set the attribute with the index to value.
        Specified by:
        setAttribute in interface IndexedAttributeAccessor
        Parameters:
        index - the attribute index
        value - the value
      • removeAttribute

        public Object removeAttribute​(int index)
        Description copied from interface: IndexedAttributeAccessor
        Internal method for dynamic attribute support. Removes the attribute with the index and returns its previous value.
        Specified by:
        removeAttribute in interface IndexedAttributeAccessor
        Parameters:
        index - the attribute index
        Returns:
        the previous value associated with the attribute