AWS SDK for C++

AWS SDK for C++ Version 1.11.792

Loading...
Searching...
No Matches
Public Member Functions | Friends | List of all members
Aws::External::tinyxml2::XMLAttribute Class Reference

#include <tinyxml2.h>

Public Member Functions

const char * Name () const
 The name of the attribute.
 
const char * Value () const
 The value of the attribute.
 
int GetLineNum () const
 Gets the line number the attribute is in, if the document was parsed from a file.
 
const XMLAttributeNext () const
 The next attribute in the list.
 
int IntValue () const
 
int64_t Int64Value () const
 
uint64_t Unsigned64Value () const
 
unsigned UnsignedValue () const
 Query as an unsigned integer. See IntValue()
 
bool BoolValue () const
 Query as a boolean. See IntValue()
 
double DoubleValue () const
 Query as a double. See IntValue()
 
float FloatValue () const
 Query as a float. See IntValue()
 
XMLError QueryIntValue (int *value) const
 
XMLError QueryUnsignedValue (unsigned int *value) const
 See QueryIntValue.
 
XMLError QueryInt64Value (int64_t *value) const
 See QueryIntValue.
 
XMLError QueryUnsigned64Value (uint64_t *value) const
 See QueryIntValue.
 
XMLError QueryBoolValue (bool *value) const
 See QueryIntValue.
 
XMLError QueryDoubleValue (double *value) const
 See QueryIntValue.
 
XMLError QueryFloatValue (float *value) const
 See QueryIntValue.
 
void SetAttribute (const char *value)
 Set the attribute to a string value.
 
void SetAttribute (int value)
 Set the attribute to value.
 
void SetAttribute (unsigned value)
 Set the attribute to value.
 
void SetAttribute (int64_t value)
 Set the attribute to value.
 
void SetAttribute (uint64_t value)
 Set the attribute to value.
 
void SetAttribute (bool value)
 Set the attribute to value.
 
void SetAttribute (double value)
 Set the attribute to value.
 
void SetAttribute (float value)
 Set the attribute to value.
 

Friends

class XMLElement
 

Detailed Description

An attribute is a name-value pair. Elements have an arbitrary number of attributes, each with a unique name.

Note
The attributes are not XMLNodes. You may only query the Next() attribute in a list.

Definition at line 1156 of file tinyxml2.h.

Member Function Documentation

◆ BoolValue()

bool Aws::External::tinyxml2::XMLAttribute::BoolValue ( ) const
inline

Query as a boolean. See IntValue()

Definition at line 1203 of file tinyxml2.h.

◆ DoubleValue()

double Aws::External::tinyxml2::XMLAttribute::DoubleValue ( ) const
inline

Query as a double. See IntValue()

Definition at line 1209 of file tinyxml2.h.

◆ FloatValue()

float Aws::External::tinyxml2::XMLAttribute::FloatValue ( ) const
inline

Query as a float. See IntValue()

Definition at line 1215 of file tinyxml2.h.

◆ GetLineNum()

int Aws::External::tinyxml2::XMLAttribute::GetLineNum ( ) const
inline

Gets the line number the attribute is in, if the document was parsed from a file.

Definition at line 1167 of file tinyxml2.h.

◆ Int64Value()

int64_t Aws::External::tinyxml2::XMLAttribute::Int64Value ( ) const
inline

Definition at line 1184 of file tinyxml2.h.

◆ IntValue()

int Aws::External::tinyxml2::XMLAttribute::IntValue ( ) const
inline

IntValue interprets the attribute as an integer, and returns the value. If the value isn't an integer, 0 will be returned. There is no error checking; use QueryIntValue() if you need error checking.

Definition at line 1178 of file tinyxml2.h.

◆ Name()

const char * Aws::External::tinyxml2::XMLAttribute::Name ( ) const

The name of the attribute.

◆ Next()

const XMLAttribute * Aws::External::tinyxml2::XMLAttribute::Next ( ) const
inline

The next attribute in the list.

Definition at line 1170 of file tinyxml2.h.

◆ QueryBoolValue()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryBoolValue ( bool *  value) const

See QueryIntValue.

◆ QueryDoubleValue()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryDoubleValue ( double *  value) const

See QueryIntValue.

◆ QueryFloatValue()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryFloatValue ( float *  value) const

See QueryIntValue.

◆ QueryInt64Value()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryInt64Value ( int64_t *  value) const

See QueryIntValue.

◆ QueryIntValue()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryIntValue ( int *  value) const

QueryIntValue interprets the attribute as an integer, and returns the value in the provided parameter. The function will return XML_SUCCESS on success, and XML_WRONG_ATTRIBUTE_TYPE if the conversion is not successful.

◆ QueryUnsigned64Value()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryUnsigned64Value ( uint64_t *  value) const

See QueryIntValue.

◆ QueryUnsignedValue()

XMLError Aws::External::tinyxml2::XMLAttribute::QueryUnsignedValue ( unsigned int *  value) const

See QueryIntValue.

◆ SetAttribute() [1/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( bool  value)

Set the attribute to value.

◆ SetAttribute() [2/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( const char *  value)

Set the attribute to a string value.

◆ SetAttribute() [3/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( double  value)

Set the attribute to value.

◆ SetAttribute() [4/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( float  value)

Set the attribute to value.

◆ SetAttribute() [5/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( int  value)

Set the attribute to value.

◆ SetAttribute() [6/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( int64_t  value)

Set the attribute to value.

◆ SetAttribute() [7/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( uint64_t  value)

Set the attribute to value.

◆ SetAttribute() [8/8]

void Aws::External::tinyxml2::XMLAttribute::SetAttribute ( unsigned  value)

Set the attribute to value.

◆ Unsigned64Value()

uint64_t Aws::External::tinyxml2::XMLAttribute::Unsigned64Value ( ) const
inline

Definition at line 1190 of file tinyxml2.h.

◆ UnsignedValue()

unsigned Aws::External::tinyxml2::XMLAttribute::UnsignedValue ( ) const
inline

Query as an unsigned integer. See IntValue()

Definition at line 1197 of file tinyxml2.h.

◆ Value()

const char * Aws::External::tinyxml2::XMLAttribute::Value ( ) const

The value of the attribute.

Friends And Related Symbol Documentation

◆ XMLElement

friend class XMLElement
friend

Definition at line 1158 of file tinyxml2.h.


The documentation for this class was generated from the following file: