Qore SqlUtil Module Reference 1.9.1
Loading...
Searching...
No Matches
SqlUtil::AbstractHashContainer Class Referenceabstract

abstract container class that throws an exception if an unknown key is accessed More...

#include <SqlUtil.qm.dox.h>

Inheritance diagram for SqlUtil::AbstractHashContainer:
[legend]

Public Member Methods

 clear ()
 purges the contained data More...
 
 constructor (*hash nh)
 creates the object with the hash argument passed
 
 constructor (AbstractHashContainer old)
 creates a copy of the object
 
 copy (AbstractHashContainer old)
 creates a "deep copy" of the object
 
bool empty ()
 returns True if the container is empty, False if not
 
*string firstKey ()
 Returns the first key name in the contained hash or NOTHING if the contained hash has no keys. More...
 
abstract string getElementName ()
 must return the name of the contained element
 
*hash< auto > getHash ()
 returns the hash contained by this object
 
bool hasKey (string k)
 Returns True if the key exists in the contained hash (may or may not be assigned a value), False if not. More...
 
bool hasKeyValue (string k)
 Returns True if the key exists in the contained hash and is assigned a value, False if not. More...
 
Qore::AbstractIterator iterator ()
 Returns a HashIterator object for the contained hash. More...
 
Qore::AbstractIterator keyIterator ()
 Returns a HashKeyIterator object for the contained hash. More...
 
list< string > keys ()
 Returns a list of key names of the contained hash. More...
 
*string lastKey ()
 Returns the last key name in the contained hash or NOTHING if the contained hash has no keys. More...
 
bool matchKeys (AbstractHashContainer c)
 returns True if the container argument has the same keys (in any order), False if not More...
 
bool matchKeys (hash h1)
 returns True if the hash argument has the same keys (in any order), False if not More...
 
bool matchKeys (list< auto > l)
 returns True if the list<auto> argument has the same list of key strings as the keys in the object (in any order), False if not More...
 
auto memberGate (string k)
 returns the value of the given key in the contained hash if it exists, otherwise throws a KEY-ERROR exception More...
 
Qore::AbstractIterator pairIterator ()
 Returns a HashPairIterator object for the contained hash. More...
 
bool partialMatchKeys (AbstractHashContainer c)
 returns True if the container argument has at least the same keys (in any order, can have more keys), False if not More...
 
bool partialMatchKeys (hash h1)
 returns True if the hash argument has at least the same keys (in any order, can have more keys), False if not More...
 
bool partialMatchKeys (list< auto > l)
 returns True if the list<auto> argument has at least the same keys (in any order, can have more keys), False if not More...
 
 renameKey (string old_name, string new_name)
 renames the given key; maintains the key order
 
int size ()
 Returns the number of keys in the contained hash. More...
 
abstract auto take (string k)
 removes the given key from the contained hash and returns the value
 
bool val ()
 Returns False if the contained hash has no keys, True if it does. More...
 
list< auto > values ()
 Returns a list of values of the contained hash. More...
 

Private Attributes

*hash h
 the data to be contained
 

Detailed Description

abstract container class that throws an exception if an unknown key is accessed

Member Function Documentation

◆ clear()

SqlUtil::AbstractHashContainer::clear ( )

purges the contained data

Example:
c.clear();

◆ firstKey()

*string SqlUtil::AbstractHashContainer::firstKey ( )

Returns the first key name in the contained hash or NOTHING if the contained hash has no keys.

Example:
*string n = h.firstKey();
Returns
the first key name in the contained hash or NOTHING if the contained hash has no keys
See also
lastKey()

◆ hasKey()

bool SqlUtil::AbstractHashContainer::hasKey ( string  k)

Returns True if the key exists in the contained hash (may or may not be assigned a value), False if not.

Example:
bool b = h.hasKey(key);
Parameters
kthe key name to check
Returns
True if the key exists in the contained hash (may or may not be assigned a value), False if not

◆ hasKeyValue()

bool SqlUtil::AbstractHashContainer::hasKeyValue ( string  k)

Returns True if the key exists in the contained hash and is assigned a value, False if not.

Example:
bool b = h.hasKeyValue(key);
Parameters
kthe key name to check
Returns
True if the key exists in the contained hash and is assigned a value, False if not

◆ iterator()

Qore::AbstractIterator SqlUtil::AbstractHashContainer::iterator ( )

Returns a HashIterator object for the contained hash.

Example:
map printf("+ %y\n", $1.value), h.iterator();
Returns
a HashIterator object for the contained hash

◆ keyIterator()

Qore::AbstractIterator SqlUtil::AbstractHashContainer::keyIterator ( )

Returns a HashKeyIterator object for the contained hash.

Example:
map printf("+ %s\n", $1), h.keyIterator();
Returns
a HashKeyIterator object for the contained hash

◆ keys()

list< string > SqlUtil::AbstractHashContainer::keys ( )

Returns a list of key names of the contained hash.

Example:
list<string> l = h.keys();
Returns
a list of key names of the contained hash

◆ lastKey()

*string SqlUtil::AbstractHashContainer::lastKey ( )

Returns the last key name in the contained hash or NOTHING if the contained hash has no keys.

Example:
*string n = h.lastKey();
Returns
the last key name in the contained hash or NOTHING if the contained hash has no keys
See also
firstKey()

◆ matchKeys() [1/3]

bool SqlUtil::AbstractHashContainer::matchKeys ( AbstractHashContainer  c)

returns True if the container argument has the same keys (in any order), False if not

Example:
bool b = c.matchKeys(c1);
Parameters
cthe container to compare
Returns
True if the container argument has the same keys (in any order), False if not

◆ matchKeys() [2/3]

bool SqlUtil::AbstractHashContainer::matchKeys ( hash  h1)

returns True if the hash argument has the same keys (in any order), False if not

Example:
bool b = c.matchKeys(h);
Parameters
h1the hash to compare
Returns
True if the hash argument has the same keys (in any order), False if not

◆ matchKeys() [3/3]

bool SqlUtil::AbstractHashContainer::matchKeys ( list< auto >  l)

returns True if the list<auto> argument has the same list of key strings as the keys in the object (in any order), False if not

Example:
bool b = c.matchKeys(l);
Parameters
lthe hash to compare
Returns
True if the list<auto> argument has the same list of key strings as the keys in the object (in any order), False if not

◆ memberGate()

auto SqlUtil::AbstractHashContainer::memberGate ( string  k)

returns the value of the given key in the contained hash if it exists, otherwise throws a KEY-ERROR exception

Example:
auto v = c.name;
Parameters
kthe name of the key to access
Returns
the value of the given key in the contained hash if it exists
Exceptions
KEY-ERRORthe given key does not exist in the contained hash
Note
this method is called automatically when an unknown or inaccessible member name is accessed from outside the class
See also
memberGate() Method

◆ pairIterator()

Qore::AbstractIterator SqlUtil::AbstractHashContainer::pairIterator ( )

Returns a HashPairIterator object for the contained hash.

Example:
map printf("+ %s: %y\n", $1.key, $1.value), h.pairIterator();
Returns
a HashPairIterator object for the contained hash

◆ partialMatchKeys() [1/3]

bool SqlUtil::AbstractHashContainer::partialMatchKeys ( AbstractHashContainer  c)

returns True if the container argument has at least the same keys (in any order, can have more keys), False if not

Example:
bool b = c.partialMatchKeys(c1);
Parameters
cthe container to compare
Returns
True if the container argument has at least the same keys (in any order, can have more keys), False if not

◆ partialMatchKeys() [2/3]

bool SqlUtil::AbstractHashContainer::partialMatchKeys ( hash  h1)

returns True if the hash argument has at least the same keys (in any order, can have more keys), False if not

Example:
bool b = c.partialMatchKeys(h);
Parameters
h1the hash to compare
Returns
True if the hash argument has at least the same keys (in any order, can have more keys), False if not

◆ partialMatchKeys() [3/3]

bool SqlUtil::AbstractHashContainer::partialMatchKeys ( list< auto >  l)

returns True if the list<auto> argument has at least the same keys (in any order, can have more keys), False if not

Example:
bool b = c.partialMatchKeys(l);
Parameters
lthe list of strings to compare
Returns
True if the list<auto> argument has at least the same keys (in any order, can have more keys), False if not

◆ size()

int SqlUtil::AbstractHashContainer::size ( )

Returns the number of keys in the contained hash.

Example:
int num = h.size();
Returns
the number of keys in the contained hash

◆ val()

bool SqlUtil::AbstractHashContainer::val ( )

Returns False if the contained hash has no keys, True if it does.

Example:
bool b = h.val();

The opposite of empty()

Returns
False if the contained hash has no keys, True if it does

◆ values()

list< auto > SqlUtil::AbstractHashContainer::values ( )

Returns a list of values of the contained hash.

Example:
list<auto> l = h.values();
Returns
a list of values of the contained hash