Class SymbolContent
- java.lang.Object
-
- mil.nga.geopackage.extension.im.portrayal.SymbolContent
-
public class SymbolContent extends Object
Describes the symbol content, e.g., actual files containing symbol(s)- Since:
- 4.0.0
- Author:
- jyutzler
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOLUMN_CONTENTstatic StringCOLUMN_FORMATstatic StringCOLUMN_IDstatic StringTABLE_NAME
-
Constructor Summary
Constructors Constructor Description SymbolContent()SymbolContent(long id, String format, byte[] content)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getContent()StringgetFormat()longgetId()voidresetId()Reset the id so the row can be inserted as newvoidsetContent(byte[] content)voidsetFormat(String format)voidsetId(long id)
-
-
-
Field Detail
-
TABLE_NAME
public static final String TABLE_NAME
- See Also:
- Constant Field Values
-
COLUMN_ID
public static final String COLUMN_ID
- See Also:
- Constant Field Values
-
COLUMN_FORMAT
public static final String COLUMN_FORMAT
- See Also:
- Constant Field Values
-
COLUMN_CONTENT
public static final String COLUMN_CONTENT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SymbolContent
public SymbolContent()
-
SymbolContent
public SymbolContent(long id, String format, byte[] content)
-
-
Method Detail
-
resetId
public void resetId()
Reset the id so the row can be inserted as new
-
getId
public long getId()
-
setId
public void setId(long id)
-
getFormat
public String getFormat()
-
setFormat
public void setFormat(String format)
-
getContent
public byte[] getContent()
-
setContent
public void setContent(byte[] content)
-
-