Package org.deckfour.xes.info
Interface XAttributeNameMap
-
- All Known Implementing Classes:
XAttributeNameMapImpl,XGlobalAttributeNameMap
public interface XAttributeNameMap- Author:
- Christian W. Guenther (christian@deckfour.org)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetMappingName()Returns the name of this mapping.java.lang.Stringmap(java.lang.String attributeKey)Returns the name mapped onto the provided attribute key by this mapping.java.lang.Stringmap(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,nullis 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,nullis returned.- Parameters:
attributeKey- Attribute key to retrieve mapping for.- Returns:
- The mapping for the given attribute key, or
null, if no such mapping exists.
-
-