#include <lti_metadataUtils.h>
Static Public Member Functions | |
static LTIMetadataTag | lookupTag (const char *tagName) |
get numeric value of tag name | |
static const char * | lookupName (LTIMetadataTag tag) |
get string value of numeric tag name | |
static const char * | lookupProperName (LTIMetadataTag tag) |
get pretty string value of numeric tag name | |
static const char * | lookupProperName (const char *name) |
get pretty string value of tag name | |
static const char * | name (LTIMetadataDataType dataType) |
get string representation of datatype | |
static LTIMetadataTagClass | tagClass (const char *tag) |
get class of the tag | |
static const char * | name (LTIMetadataTagClass tagClass) |
get string value of tag class |
Definition at line 37 of file lti_metadataUtils.h.
static LTIMetadataTag LTIMetadataUtils::lookupTag | ( | const char * | tagName | ) | [static] |
This function returns the enum associated with a given tag name. It will return LTI_METADATA_TAG_Unknown if the string is not known.
tagName | the tagName |
static const char* LTIMetadataUtils::lookupName | ( | LTIMetadataTag | tag | ) | [static] |
This function returns the string associated with a given tag enum. It will return NULL if the tag enum is not known.
tag | the tag number |
static const char* LTIMetadataUtils::lookupProperName | ( | LTIMetadataTag | tag | ) | [static] |
This function returns the prety string associated with a given tag enum. It will return NULL if the tag enum is not known.
tag | the tag number |
static const char* LTIMetadataUtils::lookupProperName | ( | const char * | name | ) | [static] |
This function returns the prety string associated with a given tag enum. It will return NULL if the tag enum is not known.
name | the tag |
static const char* LTIMetadataUtils::name | ( | LTIMetadataDataType | dataType | ) | [static] |
This function returns a string representation of the given datatype, useful for debugging.
dataType | the datatype to use |
static LTIMetadataTagClass LTIMetadataUtils::tagClass | ( | const char * | tag | ) | [static] |
This function returns the "class" associated with the given tag
tag | the tag |
static const char* LTIMetadataUtils::name | ( | LTIMetadataTagClass | tagClass | ) | [static] |
This function returns the string associated with the class of tag
tagClass | the tag class |
LizardTech |