-
- All Known Implementing Classes:
JavaCoreAttributeValueMap
public interface IAttributeValueMap
Contains a map of values parsed from a tag line. It is assumed that each attribute type occurring in a tag line occurs at most once (e.g., it's not assumed that there are two "tid" attributes in a thread info tag). Token values are Strings that get mapped to the correct type via specific methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIntValue(String tokenType)
long
getLongValue(String tokenType)
IParserToken
getToken(String tokenType)
String
getTokenValue(String tokenType)
-
-
-
Method Detail
-
getLongValue
long getLongValue(String tokenType)
- Parameters:
tokenType
-
-
getIntValue
int getIntValue(String tokenType)
- Parameters:
tokenType
-
-
getToken
IParserToken getToken(String tokenType)
- Parameters:
tokenType
-
-
-