BloombergLP::balxml::Decoder_ParseObject::executeImp

executeImp overloads

Synopses

Declared in <balxml_decoder.h>

Parse the visited element into the specified object, which is a bsl::vector<char>. Return 0 on success, and a non-zero value otherwise.

int
executeImp(
    bsl::vector<char>* object,
    int formattingMode,
    bdlat_TypeCategory::Array);
» more...

Parse the visited element into the specified object, which is an array type. Return 0 on success, and a non-zero value otherwise.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Array);
» more...

Parse the visited element into the specified object, which is a choice type. Return 0 on success, and a non-zero value otherwise.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Choice);
» more...

Parse a customized type into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::CustomizedType);
» more...

Parse a dynamic type into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::DynamicType);
» more...

Parse a nullable value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::NullableValue);
» more...

Parse the visited element into the specified object, which is a sequence type. Return 0 on success, and a non-zero value otherwise.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Sequence);
» more...

Parse the visited element into the specified object, which is a bsl::vector of the (template parameter) type TYPE. Return 0 on success, and a non-zero value otherwise.

template<class TYPE>
int
executeImp(
    bsl::vector<TYPE>* object,
    int formattingMode,
    bdlat_TypeCategory::Array);
» more...

Parse the visited value into the specified object using the specified category.

template<
    class TYPE,
    class ANY_CATEGORY>
int
executeImp(
    TYPE* object,
    int formattingMode,
    ANY_CATEGORY);
» more...