CodePorting.Translator.Cs2Cpp.Framework
|
A base class for a class that represents meta information of enumeration type. More...
#include <enum.h>
Inherited by System::EnumValues< E, Guard >.
Static Public Member Functions | |
static ArrayPtr< int64_t > | GetValues (const TypeInfo &type) |
Returns an array containing all values of the specified enumeration type. More... | |
static SharedPtr< Object > | Parse (const TypeInfo &type, const String &str, bool ignoreCase) |
Returns an object that represents a value of enumeration constant of the specified enumeration type with the specified name. More... | |
Protected Member Functions | |
EnumValuesBase (const TypeInfo &type) | |
Constructs an instance that represents metainformation for enum of the specified type. More... | |
virtual | ~EnumValuesBase () |
Destructor. More... | |
virtual ArrayPtr< int64_t > | GetValues () const =0 |
Returns an array containing all values of enumeration E . More... | |
virtual SharedPtr< Object > | GetValueOf (const String &str, bool ignoreCase) const =0 |
Returns boxed value of the enum constant with the specified name. More... | |
A base class for a class that represents meta information of enumeration type.
|
protected |
Constructs an instance that represents metainformation for enum of the specified type.
|
protectedvirtual |
Destructor.
|
protectedpure virtual |
Returns boxed value of the enum constant with the specified name.
str | The name of the enum constant |
ignoreCase | Specifeis if the case should be ignored when interpreting the name of the enum constant |
str
. Implemented in System::EnumValues< E, Guard >.
|
protectedpure virtual |
Returns an array containing all values of enumeration E
.
Implemented in System::EnumValues< E, Guard >.
Returns an array containing all values of the specified enumeration type.
type | The TypeInfo object representing the type of the enumeration whose values to return |
type
.
|
static |
Returns an object that represents a value of enumeration constant of the specified enumeration type with the specified name.
type | The TypeInfo object representing the type of the enumeration value to return |
str | The name of the enum constant |
ignoreCase | Specifeis if the case should be ignored when interpreting the name of the enum constant |
str
.