A named value that has a known type.
More...
#include <Ioss_Property.h>
|
| | Property () |
| | Create an explicit, empty property having no name, INVALID type. More...
|
| |
| | Property (std::string name, int64_t value) |
| | Create an INTEGER type property using an int64_t variable. More...
|
| |
| | Property (std::string name, int value) |
| | Create an INTEGER type property. More...
|
| |
| | Property (std::string name, double value) |
| | Create a REAL type property. More...
|
| |
| | Property (std::string name, const std::string &value) |
| | Create a STRING type property. More...
|
| |
| | Property (std::string name, const char *value) |
| | Create a STRING type property from const char* argument. More...
|
| |
| | Property (std::string name, void *value) |
| | Create a POINTER type property. More...
|
| |
| | Property (const GroupingEntity *ge, std::string name, BasicType type) |
| | Set implicit property with a specified type. More...
|
| |
| | Property (const Property &from) |
| | Copy constructor. More...
|
| |
| Property & | operator= (Property rhs) |
| |
| | ~Property () |
| |
| std::string | get_string () const |
| | Get the property value if it is of type STRING. More...
|
| |
| int64_t | get_int () const |
| | Get the property value if it is of type INTEGER. More...
|
| |
| double | get_real () const |
| | Get the property value if it is of type REAL. More...
|
| |
| void * | get_pointer () const |
| | Get the property value if it is of type POINTER. More...
|
| |
| bool | is_implicit () const |
| | Tells whether the property is calculated, rather than stored. More...
|
| |
| bool | is_explicit () const |
| | Tells whether the property is stored, rather than calculated. More...
|
| |
| bool | is_valid () const |
| |
| bool | is_invalid () const |
| |
| std::string | get_name () const |
| | Get the property name. More...
|
| |
| BasicType | get_type () const |
| | Get the property type. More...
|
| |
A named value that has a known type.
◆ BasicType
| Enumerator |
|---|
| INVALID | |
| REAL | |
| INTEGER | |
| POINTER | |
| STRING | |
◆ Property() [1/9]
| Ioss::Property::Property |
( |
| ) |
|
Create an explicit, empty property having no name, INVALID type.
◆ Property() [2/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
int64_t |
value |
|
) |
| |
Create an INTEGER type property using an int64_t variable.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [3/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
int |
value |
|
) |
| |
Create an INTEGER type property.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [4/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
double |
value |
|
) |
| |
Create a REAL type property.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [5/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
const std::string & |
value |
|
) |
| |
Create a STRING type property.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [6/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
const char * |
value |
|
) |
| |
Create a STRING type property from const char* argument.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [7/9]
| Ioss::Property::Property |
( |
std::string |
name, |
|
|
void * |
value |
|
) |
| |
Create a POINTER type property.
- Parameters
-
| [in] | name | The property name. |
| [in] | value | The property value. |
◆ Property() [8/9]
Set implicit property with a specified type.
- Parameters
-
| [in] | ge | The property value. |
| [in] | name | The property name. |
| [in] | type | The property type. |
◆ Property() [9/9]
| Ioss::Property::Property |
( |
const Property & |
from | ) |
|
Copy constructor.
- Parameters
-
◆ ~Property()
| Ioss::Property::~Property |
( |
| ) |
|
◆ get_int()
| int64_t Ioss::Property::get_int |
( |
| ) |
const |
Get the property value if it is of type INTEGER.
- Returns
- The INTEGER-type property value
◆ get_name()
| std::string Ioss::Property::get_name |
( |
| ) |
const |
|
inline |
Get the property name.
- Returns
- The property name.
◆ get_pointer()
| void * Ioss::Property::get_pointer |
( |
| ) |
const |
Get the property value if it is of type POINTER.
- Returns
- The POINTER-type property value.
◆ get_real()
| double Ioss::Property::get_real |
( |
| ) |
const |
Get the property value if it is of type REAL.
- Returns
- The REAL-type property value.
◆ get_string()
| std::string Ioss::Property::get_string |
( |
| ) |
const |
Get the property value if it is of type STRING.
- Returns
- The STRING-type property value
◆ get_type()
Get the property type.
- Returns
- The property type.
◆ get_value() [1/4]
| bool Ioss::Property::get_value |
( |
double * |
value | ) |
const |
|
private |
◆ get_value() [2/4]
| bool Ioss::Property::get_value |
( |
int64_t * |
value | ) |
const |
|
private |
◆ get_value() [3/4]
| bool Ioss::Property::get_value |
( |
std::string * |
value | ) |
const |
|
private |
◆ get_value() [4/4]
| bool Ioss::Property::get_value |
( |
void *& |
value | ) |
const |
|
private |
◆ is_explicit()
| bool Ioss::Property::is_explicit |
( |
| ) |
const |
|
inline |
Tells whether the property is stored, rather than calculated.
- Returns
- True if property is stored directly; False if it is calculated.
◆ is_implicit()
| bool Ioss::Property::is_implicit |
( |
| ) |
const |
|
inline |
Tells whether the property is calculated, rather than stored.
- Returns
- True if property is calculated; False if it is stored directly.
◆ is_invalid()
| bool Ioss::Property::is_invalid |
( |
| ) |
const |
|
inline |
Tells whether the property has an invalid type (currently not one of REAL, INTEGER, POINTER, or STRING)
- Returns
- True if the property type is invalid.
◆ is_valid()
| bool Ioss::Property::is_valid |
( |
| ) |
const |
|
inline |
Tells whether the property has a valid type (currently REAL, INTEGER, POINTER, or STRING)
- Returns
- True if the property type is valid.
◆ operator=()
◆ data_
| Data Ioss::Property::data_ {} |
|
private |
◆ isImplicit_
| bool Ioss::Property::isImplicit_ {false} |
|
private |
True if property is calculated rather than stored. False if property is stored in 'data_'
◆ name_
| std::string Ioss::Property::name_ |
|
private |
◆ type_
The documentation for this class was generated from the following files: