Interface XAttributeNameMap

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getMappingName()
      Returns the name of this mapping.
      java.lang.String map​(java.lang.String attributeKey)
      Returns the name mapped onto the provided attribute key by this mapping.
      java.lang.String map​(XAttribute attribute)
      Returns the name mapped onto the provided attribute by this mapping.
    • Method Detail

      • getMappingName

        java.lang.String getMappingName()
        Returns the name of this mapping.
        Returns:
        The name of this mapping.
      • map

        java.lang.String map​(XAttribute attribute)
        Returns the name mapped onto the provided attribute by this mapping. If no mapping for the given attribute is provided by this map, null is returned.
        Parameters:
        attribute - Attribute to retrieve mapping for.
        Returns:
        The mapping for the given attribute, or null, if no such mapping exists.
      • map

        java.lang.String map​(java.lang.String attributeKey)
        Returns the name mapped onto the provided attribute key by this mapping. If no mapping for the given attribute key is provided by this map, null is returned.
        Parameters:
        attributeKey - Attribute key to retrieve mapping for.
        Returns:
        The mapping for the given attribute key, or null, if no such mapping exists.