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
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
Type |
Name |
Description |
String |
key |
The key to search for.
|
Boolean |
addKey |
Should a new key be added if one can not be found?
|
Returns
Type |
Description |
Int64 |
The found key or null if one could not be found.
|
Exceptions
Declaration
public TObject GetMetadata<TObject>()
where TObject : IMetadata
Returns
Type Parameters
Implements
Declaration
public IList<TObject> GetMetadatas<TObject>()
where TObject : IMetadata
Returns
Type |
Description |
IList<TObject> |
|
Type Parameters
Implements
Populates the list with all Metadata from MetadataEntries 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