- Dickey Betts
Metadata
Metadata Methods
Metadata() | Constructor for the Metadata class |
IsValid() | Abstract method to be overridden by derived classes |
Name() | Returns the name of the metadata item |
Space() | Returns the space in which the metadata item is defined |
IsFore() | Returns true if 'fore' was used with this metadata object |
IsBack() | Returns true if 'back' was used with this metadata object |
IsRef() | Returns true if 'ref' was used with this metadata object |
IsSync() | Returns true if 'sync' was used with this metadata object |
IsUnique() | Returns true if 'unique' was used with this metadata object |
IsShared() | Returns true if 'shared' was used with this metadata object |
IsFinal() | Returns true if 'final' was used with this metadata object |
IsVirtual() | Returns true if 'virtual' was used with this metadata object |
IsAbstract() | Returns true if 'abstract' was used with this metadata object |
IsPublic() | Returns true if 'public' was used with this metadata object |
IsPrivate() | Returns true if 'private' was used with this metadata object |
IsModule() | Returns true if 'module' was used with this metadata object |
IsFamily() | Returns true if 'family' was used with this metadata object |
IsSpace() | Returns true if 'space' was used with this metadata object |
IsUnit() | Returns true if 'unit' was used with this metadata object |
Derived Classes
See Also
public method Metadata(string Name, string Space)
Parameters
Name
Name of the metadata item
Space
Space in which the metadata item is created
Return Value
None
Description
Constructor for the abstract Metadata class.
Metadata Class
public abstract method<bool> IsValid()
Parameters
None
Return Value
True if metadata item is valid
Description
Abstract method to return true if the specified metadata item and space are valid and false if not. This method needs to be overridden by each derived class and handled appropriately.
Metadata Class
public method<string> Name()
Parameters
None
Return Value
Name of metadata item
Description
This method returns the name of the item for this metadata object.
Metadata Class
public method<string> Space()
Parameters
None
Return Value
Space metadata item is defined in
Description
This method returns the Aztec space in which the metadata item is defined.
Metadata Class
public method<bool> IsFore()
Parameters
None
Return Value
True if 'fore' was used
Description
Method returns true if the 'fore' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsBack()
Parameters
None
Return Value
True if 'back' was used
Description
Method returns true if the 'back' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsRef()
Parameters
None
Return Value
True if 'ref' was used
Description
Method returns true if the 'ref' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsSync()
Parameters
None
Return Value
True if 'sync' was used
Description
Method returns true if the 'sync' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsUnique()
Parameters
None
Return Value
True if 'unique' was used
Description
Method returns true if the 'unique' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsShared()
Parameters
None
Return Value
True if 'shared' was used
Description
Method returns true if the 'shared' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsFinal()
Parameters
None
Return Value
True if 'final' was used
Description
Method returns true if the 'final' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsVirtual()
Parameters
None
Return Value
True if 'virtual' was used
Description
Method returns true if the 'virtual' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsAbstract()
Parameters
None
Return Value
True if 'abstract' was used
Description
Method returns true if the 'abstract' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsPublic()
Parameters
None
Return Value
True if 'public' was used
Description
Method returns true if the 'public' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsPrivate()
Parameters
None
Return Value
True if 'private' was used
Description
Method returns true if the 'private' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsModule()
Parameters
None
Return Value
True if 'module' was used
Description
Method returns true if the 'module' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsFamily()
Parameters
None
Return Value
True if 'family' was used
Description
Method returns true if the 'family' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsSpace()
Parameters
None
Return Value
True if 'space' was used
Description
Method returns true if the 'space' keyword was specified during the definition of this metadata object.
Metadata Class
public method<bool> IsUnit()
Parameters
None
Return Value
True if 'unit' was used
Description
Method returns true if the 'unit' keyword was specified during the definition of this metadata object.
Metadata Class