# Class: com.pnfsoftware.jeb.core.units.codeobject.ELFStringTable

Parser for ELF string tables.

## Constructor: ELFStringTable
- parameter: `data`, type: `byte[]`

Description: Parse an encoded string table, such as the one found in a dynamic library's program table.
parameter: data: string table data, cannot be empty and the first byte must be 0

## Method: getAllStrings
- return type: `java.util.List<java.lang.String>`

Description: Retrieve all the strings stored in the table.
return: decoded strings

## Method: getString
- parameter: `index`, type: `int`
- return type: `java.lang.String`

Description: Retrieve the string at the given index in the table. On error, this method it returns null.
parameter: index: string index, 0\-based
return: the string, null on error

