Class LocalizationTable
Abstract base class for all tables.
Contains common functionality.
Inheritance
LocalizationTable
Syntax
public abstract class LocalizationTable : ScriptableObject, IMetadataCollection, IComparable<LocalizationTable>
Properties
LocaleIdentifier
The locale this asset table supports.
Declaration
public LocaleIdentifier LocaleIdentifier { get; set; }
Property Value
Declaration
public IList<IMetadata> MetadataEntries { get; }
Property Value
Implements
SharedData
Data shared across all tables.
Declaration
public SharedTableData SharedData { get; set; }
Property Value
TableCollectionName
The name of this asset table collection.
Declaration
public string TableCollectionName { get; }
Property Value
Methods
Declaration
public void AddMetadata(IMetadata md)
Parameters
Implements
CompareTo(LocalizationTable)
Compare to another LocalizationTable.
Performs a comparison against the LocaleIdentifier property.
Declaration
public int CompareTo(LocalizationTable other)
Parameters
Returns
Checks if the Metadata is contained within .
Declaration
public bool Contains(IMetadata md)
Parameters
Returns
Implements
CreateEmpty(TableEntryReference)
Create an empty entry in the table at the specified entry.
Declaration
public abstract void CreateEmpty(TableEntryReference entryReference)
Parameters
FindKeyId(String, Boolean)
Returns the key with the matching name from the SharedTableData, if one exists.
Declaration
protected long FindKeyId(string key, bool addKey)
Parameters
Returns
Type |
Description |
Int64 |
The found key or null if one could not be found.
|
Exceptions
Returns the first Metadata item from of type TObject.
Declaration
public TObject GetMetadata<TObject>()
where TObject : IMetadata
Returns
Type Parameters
Implements
Returns all Metadata from that is of type TObject.
Declaration
public IList<TObject> GetMetadatas<TObject>()
where TObject : IMetadata
Returns
Type |
Description |
IList<TObject> |
|
Type Parameters
Implements
Populates the list with all Metadata from that is of type TObject.
Declaration
public void GetMetadatas<TObject>(IList<TObject> foundItems)
where TObject : IMetadata
Parameters
Type |
Name |
Description |
IList<TObject> |
foundItems |
|
Type Parameters
Implements
Declaration
public bool RemoveMetadata(IMetadata md)
Parameters
Returns
Implements
ToString()
Returns a string representation of the table in the format "{TableCollectionName}({LocaleIdentifier})".
Declaration
public override string ToString()
Returns
Overrides