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 String
COLUMN_CONTENT
static String
COLUMN_FORMAT
static String
COLUMN_ID
static String
TABLE_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()
String
getFormat()
long
getId()
void
resetId()
Reset the id so the row can be inserted as newvoid
setContent(byte[] content)
void
setFormat(String format)
void
setId(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)
-
-