|
| | GenericDocument (Type type, Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| | Constructor. More...
|
| |
| | GenericDocument (Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| | Constructor. More...
|
| |
| GenericDocument & | Swap (GenericDocument &rhs) RAPIDJSON_NOEXCEPT |
| | Exchange the contents of this document with those of another. More...
|
| |
|
Allocator & | GetAllocator () |
| | Get the allocator of this document.
|
| |
|
size_t | GetStackCapacity () const |
| | Get the capacity of stack in bytes.
|
| |
|
| template<unsigned parseFlags, typename SourceEncoding , typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream (with Encoding conversion) More...
|
| |
| template<unsigned parseFlags, typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream. More...
|
| |
| template<typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream (with kParseDefaultFlags) More...
|
| |
|
| template<unsigned parseFlags> |
| GenericDocument & | ParseInsitu (Ch *str) |
| | Parse JSON text from a mutable string. More...
|
| |
| GenericDocument & | ParseInsitu (Ch *str) |
| | Parse JSON text from a mutable string (with kParseDefaultFlags) More...
|
| |
|
| template<unsigned parseFlags, typename SourceEncoding > |
| GenericDocument & | Parse (const Ch *str) |
| | Parse JSON text from a read-only string (with Encoding conversion) More...
|
| |
| template<unsigned parseFlags> |
| GenericDocument & | Parse (const Ch *str) |
| | Parse JSON text from a read-only string. More...
|
| |
| GenericDocument & | Parse (const Ch *str) |
| | Parse JSON text from a read-only string (with kParseDefaultFlags) More...
|
| |
|
|
bool | HasParseError () const |
| | Whether a parse error has occured in the last parsing.
|
| |
|
ParseErrorCode | GetParseError () const |
| | Get the ParseErrorCode of last parsing.
|
| |
|
size_t | GetErrorOffset () const |
| | Get the position of last parsing error in input, 0 otherwise.
|
| |
| template<typename Handler > |
| bool | Accept (Handler &handler) const |
| | Generate events of this value to a Handler. More...
|
| |
|
Type | GetType () const |
| |
|
bool | IsNull () const |
| |
|
bool | IsFalse () const |
| |
|
bool | IsTrue () const |
| |
|
bool | IsBool () const |
| |
|
bool | IsObject () const |
| |
|
bool | IsArray () const |
| |
|
bool | IsNumber () const |
| |
|
bool | IsInt () const |
| |
|
bool | IsUint () const |
| |
|
bool | IsInt64 () const |
| |
|
bool | IsUint64 () const |
| |
|
bool | IsDouble () const |
| |
|
bool | IsString () const |
| |
|
GenericValue & | SetNull () |
| |
|
bool | GetBool () const |
| | Set boolean value.
|
| |
| GenericValue & | SetBool (bool b) |
| |
| GenericValue & | SetObject () |
| | Set this value as an empty object. More...
|
| |
|
SizeType | MemberCount () const |
| | Get the number of members in the object.
|
| |
|
bool | ObjectEmpty () const |
| | Check whether the object is empty.
|
| |
| template<typename T > |
| GenericValue & | operator[] (T *name) |
| | Get a value from an object associated with the name. More...
|
| |
|
template<typename T > |
| const GenericValue & | operator[] (T *name) const |
| |
| template<typename SourceAllocator > |
| GenericValue & | operator[] (const GenericValue< Encoding, SourceAllocator > &name) |
| | Get a value from an object associated with the name. More...
|
| |
|
template<typename SourceAllocator > |
| const GenericValue & | operator[] (const GenericValue< Encoding, SourceAllocator > &name) const |
| |
|
GenericValue & | operator[] (const std::basic_string< Ch > &name) |
| | Get a value from an object associated with name (string object).
|
| |
|
const GenericValue & | operator[] (const std::basic_string< Ch > &name) const |
| |
| ConstMemberIterator | MemberBegin () const |
| | Const member iterator. More...
|
| |
| ConstMemberIterator | MemberEnd () const |
| | Const past-the-end member iterator. More...
|
| |
| MemberIterator | MemberBegin () |
| | Member iterator. More...
|
| |
| MemberIterator | MemberEnd () |
| | Past-the-end member iterator More...
|
| |
| bool | HasMember (const Ch *name) const |
| | Check whether a member exists in the object. More...
|
| |
| bool | HasMember (const std::basic_string< Ch > &name) const |
| | Check whether a member exists in the object with string object. More...
|
| |
| template<typename SourceAllocator > |
| bool | HasMember (const GenericValue< Encoding, SourceAllocator > &name) const |
| | Check whether a member exists in the object with GenericValue name. More...
|
| |
| MemberIterator | FindMember (const Ch *name) |
| | Find member by name. More...
|
| |
|
ConstMemberIterator | FindMember (const Ch *name) const |
| |
| template<typename SourceAllocator > |
| MemberIterator | FindMember (const GenericValue< Encoding, SourceAllocator > &name) |
| | Find member by name. More...
|
| |
|
template<typename SourceAllocator > |
| ConstMemberIterator | FindMember (const GenericValue< Encoding, SourceAllocator > &name) const |
| |
| MemberIterator | FindMember (const std::basic_string< Ch > &name) |
| | Find member by string object name. More...
|
| |
|
ConstMemberIterator | FindMember (const std::basic_string< Ch > &name) const |
| |
| GenericValue & | AddMember (GenericValue &name, GenericValue &value, Allocator &allocator) |
| | Add a member (name-value pair) to the object. More...
|
| |
| GenericValue & | AddMember (GenericValue &name, StringRefType value, Allocator &allocator) |
| | Add a constant string value as member (name-value pair) to the object. More...
|
| |
| GenericValue & | AddMember (GenericValue &name, std::basic_string< Ch > &value, Allocator &allocator) |
| | Add a string object as member (name-value pair) to the object. More...
|
| |
| template<typename T > |
| GenericValue & | AddMember (GenericValue &name, T value, Allocator &allocator) |
| | Add any primitive value as member (name-value pair) to the object. More...
|
| |
| GenericValue & | AddMember (StringRefType name, GenericValue &value, Allocator &allocator) |
| | Add a member (name-value pair) to the object. More...
|
| |
| GenericValue & | AddMember (StringRefType name, StringRefType value, Allocator &allocator) |
| | Add a constant string value as member (name-value pair) to the object. More...
|
| |
| template<typename T > |
| GenericValue & | AddMember (StringRefType name, T value, Allocator &allocator) |
| | Add any primitive value as member (name-value pair) to the object. More...
|
| |
| void | RemoveAllMembers () |
| | Remove all members in the object. More...
|
| |
| bool | RemoveMember (const Ch *name) |
| | Remove a member in object by its name. More...
|
| |
|
bool | RemoveMember (const std::basic_string< Ch > &name) |
| |
|
template<typename SourceAllocator > |
| bool | RemoveMember (const GenericValue< Encoding, SourceAllocator > &name) |
| |
| MemberIterator | RemoveMember (MemberIterator m) |
| | Remove a member in object by iterator. More...
|
| |
| MemberIterator | EraseMember (ConstMemberIterator pos) |
| | Remove a member from an object by iterator. More...
|
| |
| MemberIterator | EraseMember (ConstMemberIterator first, ConstMemberIterator last) |
| | Remove members in the range [first, last) from an object. More...
|
| |
| bool | EraseMember (const Ch *name) |
| | Erase a member in object by its name. More...
|
| |
|
bool | EraseMember (const std::basic_string< Ch > &name) |
| |
|
template<typename SourceAllocator > |
| bool | EraseMember (const GenericValue< Encoding, SourceAllocator > &name) |
| |
| GenericValue & | SetArray () |
| | Set this value as an empty array. More...
|
| |
|
SizeType | Size () const |
| | Get the number of elements in array.
|
| |
|
SizeType | Capacity () const |
| | Get the capacity of array.
|
| |
|
bool | Empty () const |
| | Check whether the array is empty.
|
| |
| void | Clear () |
| | Remove all elements in the array. More...
|
| |
| GenericValue & | operator[] (SizeType index) |
| | Get an element from array by index. More...
|
| |
|
const GenericValue & | operator[] (SizeType index) const |
| |
| ValueIterator | Begin () |
| | Element iterator. More...
|
| |
| ValueIterator | End () |
| | Past-the-end element iterator More...
|
| |
| ConstValueIterator | Begin () const |
| | Constant element iterator. More...
|
| |
| ConstValueIterator | End () const |
| | Constant past-the-end element iterator. More...
|
| |
| GenericValue & | Reserve (SizeType newCapacity, Allocator &allocator) |
| | Request the array to have enough capacity to store elements. More...
|
| |
| GenericValue & | PushBack (GenericValue &value, Allocator &allocator) |
| | Append a GenericValue at the end of the array. More...
|
| |
| GenericValue & | PushBack (StringRefType value, Allocator &allocator) |
| | Append a constant string reference at the end of the array. More...
|
| |
| template<typename T > |
| GenericValue & | PushBack (T value, Allocator &allocator) |
| | Append a primitive value at the end of the array. More...
|
| |
| GenericValue & | PopBack () |
| | Remove the last element in the array. More...
|
| |
| ValueIterator | Erase (ConstValueIterator pos) |
| | Remove an element of array by iterator. More...
|
| |
| ValueIterator | Erase (ConstValueIterator first, ConstValueIterator last) |
| | Remove elements in the range [first, last) of the array. More...
|
| |
|
int | GetInt () const |
| |
|
unsigned | GetUint () const |
| |
|
int64_t | GetInt64 () const |
| |
|
uint64_t | GetUint64 () const |
| |
|
double | GetDouble () const |
| |
|
GenericValue & | SetInt (int i) |
| |
|
GenericValue & | SetUint (unsigned u) |
| |
|
GenericValue & | SetInt64 (int64_t i64) |
| |
|
GenericValue & | SetUint64 (uint64_t u64) |
| |
|
GenericValue & | SetDouble (double d) |
| |
|
const Ch * | GetString () const |
| |
| SizeType | GetStringLength () const |
| | Get the length of string. More...
|
| |
| GenericValue & | SetString (const Ch *s, SizeType length) |
| | Set this value as a string without copying source string. More...
|
| |
| GenericValue & | SetString (StringRefType s) |
| | Set this value as a string without copying source string. More...
|
| |
| GenericValue & | SetString (const Ch *s, SizeType length, Allocator &allocator) |
| | Set this value as a string by copying from source string. More...
|
| |
| GenericValue & | SetString (const Ch *s, Allocator &allocator) |
| | Set this value as a string by copying from source string. More...
|
| |
| GenericValue & | SetString (const std::basic_string< Ch > &s, Allocator &allocator) |
| | Set this value as a string by copying from source string. More...
|
| |
| GenericValue & | operator= (GenericValue &rhs) RAPIDJSON_NOEXCEPT |
| | Assignment with move semantics. More...
|
| |
| GenericValue & | operator= (StringRefType str) RAPIDJSON_NOEXCEPT |
| | Assignment of constant string reference (no copy) More...
|
| |
| template<typename T > |
| GenericValue & | operator= (T value) |
| | Assignment with primitive types. More...
|
| |
| template<typename SourceAllocator > |
| GenericValue & | CopyFrom (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator) |
| | Deep-copy assignment from Value. More...
|
| |
| GenericValue & | Swap (GenericValue &other) RAPIDJSON_NOEXCEPT |
| | Exchange the contents of this value with those of other. More...
|
| |
| GenericValue & | Move () RAPIDJSON_NOEXCEPT |
| | Prepare Value for move semantics. More...
|
| |
| template<typename SourceAllocator > |
| bool | operator== (const GenericValue< Encoding, SourceAllocator > &rhs) const |
| | Equal-to operator. More...
|
| |
|
bool | operator== (const Ch *rhs) const |
| | Equal-to operator with const C-string pointer.
|
| |
| bool | operator== (const std::basic_string< Ch > &rhs) const |
| | Equal-to operator with string object. More...
|
| |
| template<typename T > |
| bool | operator== (const T &rhs) const |
| | Equal-to operator with primitive types. More...
|
| |
| template<typename SourceAllocator > |
| bool | operator!= (const GenericValue< Encoding, SourceAllocator > &rhs) const |
| | Not-equal-to operator. More...
|
| |
|
bool | operator!= (const Ch *rhs) const |
| | Not-equal-to operator with const C-string pointer.
|
| |
| template<typename T > |
| bool | operator!= (const T &rhs) const |
| | Not-equal-to operator with arbitrary types. More...
|
| |
|
| GenericValue () RAPIDJSON_NOEXCEPT |
| | Default constructor creates a null value.
|
| |
| | GenericValue (Type type) RAPIDJSON_NOEXCEPT |
| | Constructor with JSON value type. More...
|
| |
| template<typename SourceAllocator > |
| | GenericValue (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator) |
| | Explicit copy constructor (with allocator) More...
|
| |
| | GenericValue (bool b) RAPIDJSON_NOEXCEPT |
| | Constructor for boolean value. More...
|
| |
|
| GenericValue (int i) RAPIDJSON_NOEXCEPT |
| | Constructor for int value.
|
| |
|
| GenericValue (unsigned u) RAPIDJSON_NOEXCEPT |
| | Constructor for unsigned value.
|
| |
|
| GenericValue (int64_t i64) RAPIDJSON_NOEXCEPT |
| | Constructor for int64_t value.
|
| |
|
| GenericValue (uint64_t u64) RAPIDJSON_NOEXCEPT |
| | Constructor for uint64_t value.
|
| |
|
| GenericValue (double d) RAPIDJSON_NOEXCEPT |
| | Constructor for double value.
|
| |
|
| GenericValue (const Ch *s, SizeType length) RAPIDJSON_NOEXCEPT |
| | Constructor for constant string (i.e. do not make a copy of string)
|
| |
|
| GenericValue (StringRefType s) RAPIDJSON_NOEXCEPT |
| | Constructor for constant string (i.e. do not make a copy of string)
|
| |
|
| GenericValue (const Ch *s, SizeType length, Allocator &allocator) |
| | Constructor for copy-string (i.e. do make a copy of string)
|
| |
|
| GenericValue (const Ch *s, Allocator &allocator) |
| | Constructor for copy-string (i.e. do make a copy of string)
|
| |
| | GenericValue (const std::basic_string< Ch > &s, Allocator &allocator) |
| | Constructor for copy-string from a string object (i.e. do make a copy of string) More...
|
| |
| | ~GenericValue () |
| | Destructor. More...
|
| |