|
Anvil
|
A two dimensional array data resource. More...
Inheritance diagram for Anvil.API.TwoDimArray< T >:
Collaboration diagram for Anvil.API.TwoDimArray< T >:Public Member Functions | |
| bool? | GetBool (int rowIndex, int columnIndex) |
| Gets the specified boolean value. | |
| bool? | GetBool (int rowIndex, string columnName) |
| Gets the specified boolean value. | |
| int | GetColumnIndex (string columnName) |
| Gets the index of the column with the specified name/label. | |
| T? | GetEnum< T > (int rowIndex, int columnIndex) |
| Gets the specified enum value value. | |
| T? | GetEnum< T > (int rowIndex, string columnName) |
| Gets the specified StrRef value. | |
| IEnumerator< T > | GetEnumerator () |
| float? | GetFloat (int rowIndex, int columnIndex) |
| Gets the specified float value. | |
| float? | GetFloat (int rowIndex, string columnName) |
| Gets the specified float value. | |
| int? | GetInt (int rowIndex, int columnIndex) |
| Gets the specified int value. | |
| int? | GetInt (int rowIndex, string columnName) |
| Gets the specified int value. | |
| T | GetRow (int rowIndex) |
| Gets the row at the specified index. | |
| string? | GetString (int rowIndex, int columnIndex) |
| Gets the specified string value. | |
| string? | GetString (int rowIndex, string columnName) |
| Gets the specified string value. | |
| StrRef? | GetStrRef (int rowIndex, int columnIndex) |
| Gets the specified StrRef value. | |
| StrRef? | GetStrRef (int rowIndex, string columnName) |
| Gets the specified StrRef value. | |
| TwoDimArray< T >? | GetTable< T > (int rowIndex, int columnIndex) |
| Interprets the specified value as a table name, and returns the associated table. | |
| TwoDimArray< T >? | GetTable< T > (int rowIndex, string columnName) |
| Interprets the specified value as a table name, and returns the associated table. | |
| T? | GetTableEntry< T > (int rowIndex, int columnIndex, TwoDimArray< T > table) |
| Interprets the specified value as a table index, and returns the associated table entry. | |
| T? | GetTableEntry< T > (int rowIndex, string columnName, TwoDimArray< T > table) |
| Interprets the specified value as a table index, and returns the associated table entry. | |
| Vector3? | GetVector3 (int rowIndex, int columnIndexX, int columnIndexY, int columnIndexZ) |
| Gets the specified Vector3 value. | |
| Vector3? | GetVector3 (int rowIndex, string columnNameX, string columnNameY, string columnNameZ) |
| Gets the specified Vector3 value. | |
A two dimensional array data resource.
A two dimensional array resource, with a decoded row type.
| T | The row/entry type to decode the array. |
| T | : | class | |
| T | : | ITwoDimArrayEntry | |
| T | : | new() |
|
inline |
Gets the specified boolean value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
|
inline |
Gets the specified boolean value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
|
inline |
Gets the index of the column with the specified name/label.
| columnName | The column to lookup. |
|
inline |
Gets the specified enum value value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
| T | : | struct | |
| T | : | Enum |
|
inline |
Gets the specified StrRef value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
| T | : | struct | |
| T | : | Enum |
|
inline |
Gets the specified float value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
|
inline |
Gets the specified float value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
|
inline |
Gets the specified int value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
|
inline |
Gets the specified int value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
|
inline |
Gets the row at the specified index.
| rowIndex | The row index. |
|
inline |
Gets the specified string value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
|
inline |
Gets the specified string value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
|
inline |
Gets the specified StrRef value.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
|
inline |
Gets the specified StrRef value.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
|
inline |
Interprets the specified value as a table name, and returns the associated table.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
| T | The type of table entry. |
| T | : | class | |
| T | : | ITwoDimArrayEntry | |
| T | : | new() |
|
inline |
Interprets the specified value as a table name, and returns the associated table.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
| T | The type of table entry. |
| T | : | class | |
| T | : | ITwoDimArrayEntry | |
| T | : | new() |
|
inline |
Interprets the specified value as a table index, and returns the associated table entry.
| rowIndex | The index of the row to query. |
| columnIndex | The index of the column to query. |
| table | The table that should be used to resolve the value. |
| T | The type of table entry. |
| T | : | class | |
| T | : | ITwoDimArrayEntry | |
| T | : | new() |
|
inline |
Interprets the specified value as a table index, and returns the associated table entry.
| rowIndex | The index of the row to query. |
| columnName | The name/label of the column to query. |
| table | The table that should be used to resolve the value. |
| T | The type of table entry. |
| T | : | class | |
| T | : | ITwoDimArrayEntry | |
| T | : | new() |
|
inline |
Gets the specified Vector3 value.
| rowIndex | The index of the row to query. |
| columnIndexX | The index of the column containing the x component of the vector. |
| columnIndexY | The index of the column containing the y component of the vector. |
| columnIndexZ | The index of the column containing the z component of the vector. |
|
inline |
Gets the specified Vector3 value.
| rowIndex | The index of the row to query. |
| columnNameX | The name/label of the column containing the x component of the vector. |
| columnNameY | The name/label of the column containing the y component of the vector. |
| columnNameZ | The name/label of the column containing the z component of the vector. |