|
| AZ_RTTI (Datum, "{8B836FC0-98A8-4A81-8651-35C7CA125451}", SerializationListener) |
|
| AZ_CLASS_ALLOCATOR (Datum, AZ::SystemAllocator) |
|
| Datum (const Datum &object) |
|
| Datum (Datum &&object) |
|
| Datum (const Data::Type &type, eOriginality originality) |
|
| Datum (const Data::Type &type, eOriginality originality, const void *source, const AZ::Uuid &sourceTypeID) |
|
| Datum (const AZ::BehaviorParameter ¶meterDesc, eOriginality originality, const void *source) |
|
| Datum (BehaviorContextResultTag, const AZ::BehaviorParameter &resultType) |
|
| Datum (const AZStd::string &behaviorClassName, eOriginality originality) |
|
| Datum (const AZ::BehaviorArgument &value) |
|
void | ReconfigureDatumTo (Datum &&object) |
|
void | ReconfigureDatumTo (const Datum &object) |
|
void | CopyDatumTypeAndValue (const Datum &object) |
|
void | DeepCopyDatum (const Datum &object) |
|
const AZStd::any & | ToAny () const |
|
template<typename t_Value , typename = AZStd::enable_if_t<!AZStd::is_same<AZStd::decay_t<t_Value>, Datum>::value && !AZStd::is_same<AZStd::decay_t<t_Value>, AZ::BehaviorArgument>::value>> |
| Datum (t_Value &&value) |
|
AZ_INLINE bool | Empty () const |
|
template<typename t_Value > |
const t_Value * | GetAs () const |
| use RARELY, this is dangerous. Use ONLY to read the value contained by this Datum, never to modify
|
|
AZ_INLINE const void * | GetAsDanger () const |
|
const Data::Type & | GetType () const |
|
void | SetType (const Data::Type &dataType, TypeChange typeChange=TypeChange::Requested) |
|
template<typename T > |
void | SetAZType () |
|
AZ_INLINE bool | IsConvertibleFrom (const AZ::Uuid &typeID) const |
|
AZ_INLINE bool | IsConvertibleFrom (const Data::Type &type) const |
|
AZ_INLINE bool | IsConvertibleTo (const AZ::Uuid &typeID) const |
|
AZ_INLINE bool | IsConvertibleTo (const Data::Type &type) const |
|
bool | IsConvertibleTo (const AZ::BehaviorParameter ¶meterDesc) const |
|
bool | IsDefaultValue () const |
|
template<typename t_Value > |
bool | IS_A () const |
|
AZ_INLINE bool | IS_A (const Data::Type &type) const |
|
template<typename t_Value > |
t_Value * | ModAs () |
| use RARELY, this is dangerous as it circumvents ScriptCanvas execution. Use to initialize values more simply in unit testing, or assist debugging.
|
|
AZ_INLINE void * | ModAsDanger () |
|
Datum & | operator= (const Datum &other) |
|
Datum & | operator= (Datum &&other) |
|
ComparisonOutcome | operator== (const Datum &other) const |
|
ComparisonOutcome | operator!= (const Datum &other) const |
|
ComparisonOutcome | operator< (const Datum &other) const |
|
ComparisonOutcome | operator<= (const Datum &other) const |
|
ComparisonOutcome | operator> (const Datum &other) const |
|
ComparisonOutcome | operator>= (const Datum &other) const |
|
template<typename t_Value > |
AZ_INLINE bool | Set (const t_Value &value) |
|
void | SetToDefaultValueOfType () |
|
void | SetNotificationsTarget (AZ::EntityId notificationId) |
|
bool | ToBehaviorContext (AZ::BehaviorArgument &destination) const |
|
AZ::BehaviorArgument | ToBehaviorContext (AZ::BehaviorClass *&behaviorClass) |
|
AZ::Outcome< AZ::BehaviorArgument, AZStd::string > | ToBehaviorValueParameter (const AZ::BehaviorParameter &description) const |
|
AZ_INLINE AZStd::string | ToString () const |
|
bool | ToString (Data::StringType &result) const |
|
void | SetLabel (AZStd::string_view name) |
|
AZStd::string | GetLabel () const |
|
void | SetVisibility (AZ::Crc32 visibility) |
|
AZ::Crc32 | GetVisibility () const |
|
void | ResolveSelfEntityReferences (const AZ::EntityId &graphOwnerId) |
|
AZ::Outcome< AZ::BehaviorArgument, AZStd::string > | ToBehaviorValueParameterResult (const AZ::BehaviorParameter &description, const AZStd::string_view className, const AZStd::string_view methodName) |
|
void | ConvertBehaviorContextMethodResult (const AZ::BehaviorParameter &resultType) |
|
template<typename t_Value > |
bool | Set (const t_Value &value) |
|
| AZ_RTTI (SerializationListener, "{CA4EE281-30B3-4928-BCD8-9305CE75E463}") |
|
virtual void | OnSerialize () |
|
A Datum is used to provide generic storage for all data types in ScriptCanvas, and provide a common interface to accessing, modifying, and displaying them in the editor, regardless of their actual ScriptCanvas or BehaviorContext type.