Sleuth Kit Java Bindings (JNI)
4.6.0
Java bindings for using The Sleuth Kit
|
Classes | |
enum | ATTRIBUTE_TYPE |
enum | TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE |
class | Type |
Public Member Functions | |
BlackboardAttribute (ATTRIBUTE_TYPE attributeType, String source, int valueInt) throws IllegalArgumentException | |
BlackboardAttribute (Type attributeType, String source, int valueInt) throws IllegalArgumentException | |
BlackboardAttribute (ATTRIBUTE_TYPE attributeType, String source, long valueLong) throws IllegalArgumentException | |
BlackboardAttribute (Type attributeType, String source, long valueLong) throws IllegalArgumentException | |
BlackboardAttribute (ATTRIBUTE_TYPE attributeType, String source, double valueDouble) throws IllegalArgumentException | |
BlackboardAttribute (Type attributeType, String source, double valueDouble) throws IllegalArgumentException | |
BlackboardAttribute (ATTRIBUTE_TYPE attributeType, String source, String valueString) throws IllegalArgumentException | |
BlackboardAttribute (Type attributeType, String source, String valueString) throws IllegalArgumentException | |
BlackboardAttribute (ATTRIBUTE_TYPE attributeType, String source, byte[] valueBytes) throws IllegalArgumentException | |
BlackboardAttribute (Type attributeType, String source, byte[] valueBytes) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, int valueInt) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, String context, int valueInt) | |
BlackboardAttribute (int attributeTypeID, String moduleName, long valueLong) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, String context, long valueLong) | |
BlackboardAttribute (int attributeTypeID, String moduleName, double valueDouble) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, String context, double valueDouble) | |
BlackboardAttribute (int attributeTypeID, String moduleName, String valueString) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, String context, String valueString) | |
BlackboardAttribute (int attributeTypeID, String moduleName, byte[] valueBytes) throws IllegalArgumentException | |
BlackboardAttribute (int attributeTypeID, String moduleName, String context, byte[] valueBytes) | |
void | addSource (String source) throws TskCoreException |
boolean | equals (Object obj) |
long | getArtifactID () |
BlackboardAttribute.Type | getAttributeType () |
String | getAttributeTypeDisplayName () throws TskCoreException |
int | getAttributeTypeID () |
String | getAttributeTypeName () throws TskCoreException |
String | getContext () |
String | getDisplayString () |
String | getModuleName () |
BlackboardArtifact | getParentArtifact () throws TskCoreException |
List< String > | getSources () |
byte[] | getValueBytes () |
double | getValueDouble () |
int | getValueInt () |
long | getValueLong () |
String | getValueString () |
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE | getValueType () |
int | hashCode () |
String | toString () |
Protected Member Functions | |
void | setArtifactID (long artifactID) |
void | setCase (SleuthkitCase sleuthkitCase) |
Represents an attribute of an artifact posted to the blackboard. Instances should be constructed and then added to an instance of the BlackboardArtifact class.
Attributes are a name-value pairs. The name is the type of the attribute, as represented by the BlackboardAttribute.Type class. Standard attribute types are specified by the ATTRIBUTE_TYPE enumeration. Custom attribute types may be created by constructing a BlackboardAttribute.Type object and calling the SleuthkitCase.addArtifactAttributeType method. The BlackboardAttribute.Type object that is returned can then be used to create instances of the custom attribute by calling the appropriate BlackboardAttribute constructor. It can also be used to do blackboard queries involving the custom type.
Definition at line 45 of file BlackboardAttribute.java.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | ATTRIBUTE_TYPE | attributeType, |
String | source, | ||
int | valueInt | ||
) | throws IllegalArgumentException |
Constructs a standard attribute with an integer value. The attribute should be added to an appropriate artifact.
attributeType | The standard attribute type. |
source | The source of this attribute. |
valueInt | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER. |
Definition at line 74 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.equals().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | Type | attributeType, |
String | source, | ||
int | valueInt | ||
) | throws IllegalArgumentException |
Constructs an attribute with an integer value. The attribute should be added to an appropriate artifact.
attributeType | The attribute type. |
source | The source of this attribute. |
valueInt | The attribute value. |
IllegalArgumentException | If the value type of the specified attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER. |
Definition at line 101 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | ATTRIBUTE_TYPE | attributeType, |
String | source, | ||
long | valueLong | ||
) | throws IllegalArgumentException |
Constructs a standard attribute with a long/datetime value. If the value is a datetime, it should be seconds from January 1, 1970. The attribute should be added to an appropriate artifact.
attributeType | The standard attribute type. |
source | The source of this attribute. |
valueLong | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG or TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME. |
Definition at line 131 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME, org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | Type | attributeType, |
String | source, | ||
long | valueLong | ||
) | throws IllegalArgumentException |
Constructs an attribute with a long/datetime value. The attribute should be added to an appropriate artifact.
attributeType | The attribute type. |
source | The source of this attribute. |
valueLong | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG or TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME. |
Definition at line 161 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME, org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | ATTRIBUTE_TYPE | attributeType, |
String | source, | ||
double | valueDouble | ||
) | throws IllegalArgumentException |
Constructs a standard attribute with a double value. The attribute should be added to an appropriate artifact.
attributeType | The standard attribute type. |
source | The source of this attribute. |
valueDouble | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE. |
Definition at line 189 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE, and org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | Type | attributeType, |
String | source, | ||
double | valueDouble | ||
) | throws IllegalArgumentException |
Constructs an attribute with a double value. The attribute should be added to an appropriate artifact.
attributeType | The attribute type. |
source | The source of this attribute. |
valueDouble | The attribute value. |
IllegalArgumentException | If the value type of the specified attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE. |
Definition at line 217 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE, and org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | ATTRIBUTE_TYPE | attributeType, |
String | source, | ||
String | valueString | ||
) | throws IllegalArgumentException |
Constructs a standard attribute with an string value. The attribute should be added to an appropriate artifact.
attributeType | The standard attribute type. |
source | The source of this attribute. |
valueString | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING. |
Definition at line 244 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | Type | attributeType, |
String | source, | ||
String | valueString | ||
) | throws IllegalArgumentException |
Constructs an attribute with a string value. The attribute should be added to an appropriate artifact.
attributeType | The attribute type. |
source | The source of this attribute. |
valueString | The attribute value. |
IllegalArgumentException | If the value type of the specified attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING. |
Definition at line 275 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | ATTRIBUTE_TYPE | attributeType, |
String | source, | ||
byte[] | valueBytes | ||
) | throws IllegalArgumentException |
Constructs a standard attribute with a byte array value. The attribute should be added to an appropriate artifact.
attributeType | The standard attribute type. |
source | The source of this attribute. |
valueBytes | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE. |
Definition at line 306 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE, and org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | Type | attributeType, |
String | source, | ||
byte[] | valueBytes | ||
) | throws IllegalArgumentException |
Constructs an attribute with a byte array value. The attribute should be added to an appropriate artifact.
attributeType | The attribute type. |
source | The source of this attribute. |
valueBytes | The attribute value. |
IllegalArgumentException | If the value type of the specified attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE. |
Definition at line 337 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE, and org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
int | valueInt | ||
) | throws IllegalArgumentException |
Creates a standard attribute with an integer value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
valueInt | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER or the type id is not for a standard type. |
Definition at line 1421 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.fromID().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | context, | ||
int | valueInt | ||
) |
Creates a standard attribute with an integer value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
context | Extra information about the attribute. |
valueInt | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER or the type id is not for a standard type. |
Definition at line 1443 of file BlackboardAttribute.java.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
long | valueLong | ||
) | throws IllegalArgumentException |
Creates a standard attribute with a long/datetime value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module that creating this attribute. |
valueLong | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG or TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME or the type id is not for a standard type. |
Definition at line 1468 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.fromID().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | context, | ||
long | valueLong | ||
) |
Creates a standard attribute with a long/datetime value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module that creating this attribute. |
context | Extra information about the attribute. |
valueLong | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG or TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DATETIME or the type id is not for a standard type. |
Definition at line 1493 of file BlackboardAttribute.java.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
double | valueDouble | ||
) | throws IllegalArgumentException |
Creates a standard attribute with a double value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
valueDouble | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE or the type id is not for a standard type. |
Definition at line 1516 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.fromID().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | context, | ||
double | valueDouble | ||
) |
Creates a standard attribute with a double value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
context | Extra information about the attribute. |
valueDouble | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE or the type id is not for a standard type. |
Definition at line 1539 of file BlackboardAttribute.java.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | valueString | ||
) | throws IllegalArgumentException |
Creates a standard attribute with a string value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
valueString | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING or the type id is not for a standard type. |
Definition at line 1562 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.fromID().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | context, | ||
String | valueString | ||
) |
Creates a standard attribute with a string value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
context | Extra information about the attribute. |
valueString | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING or the type id is not for a standard type. |
Definition at line 1584 of file BlackboardAttribute.java.
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
byte[] | valueBytes | ||
) | throws IllegalArgumentException |
Creates a standard attribute with a byte array value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
valueBytes | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE or the type id is not for a standard type. |
Definition at line 1607 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.fromID().
org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute | ( | int | attributeTypeID, |
String | moduleName, | ||
String | context, | ||
byte[] | valueBytes | ||
) |
Creates a standard attribute with a byte array value. The attribute should be added to an appropriate artifact.
attributeTypeID | The standard attribute type id. |
moduleName | The display name of the module creating this attribute. |
context | Extra information about the attribute. |
valueBytes | The attribute value. |
IllegalArgumentException | If the value type of the specified standard attribute type is not TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE or the type id is not for a standard type. |
Definition at line 1629 of file BlackboardAttribute.java.
void org.sleuthkit.datamodel.BlackboardAttribute.addSource | ( | String | source | ) | throws TskCoreException |
Adds a source to the sources of this attribute.
source | The source name. |
org.sleuthkit.datamodel.TskCoreException |
Definition at line 456 of file BlackboardAttribute.java.
boolean org.sleuthkit.datamodel.BlackboardAttribute.equals | ( | Object | obj | ) |
Definition at line 483 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute(), and org.sleuthkit.datamodel.BlackboardAttribute.getArtifactID().
long org.sleuthkit.datamodel.BlackboardAttribute.getArtifactID | ( | ) |
Gets the id of the artifact associated with this attribute, if the attribute was added to an artifact. Attributes should always be added to artifacts after they are constructed.
Definition at line 363 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.equals().
BlackboardAttribute.Type org.sleuthkit.datamodel.BlackboardAttribute.getAttributeType | ( | ) |
Gets the type of this attribute.
Definition at line 372 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardArtifact.getShortDescription().
String org.sleuthkit.datamodel.BlackboardAttribute.getAttributeTypeDisplayName | ( | ) | throws TskCoreException |
Gets the attribute type display name.
org.sleuthkit.datamodel.TskCoreException |
Definition at line 1727 of file BlackboardAttribute.java.
int org.sleuthkit.datamodel.BlackboardAttribute.getAttributeTypeID | ( | ) |
Gets the attribute type id.
Definition at line 1698 of file BlackboardAttribute.java.
String org.sleuthkit.datamodel.BlackboardAttribute.getAttributeTypeName | ( | ) | throws TskCoreException |
Gets the attribute type name.
org.sleuthkit.datamodel.TskCoreException |
Definition at line 1712 of file BlackboardAttribute.java.
String org.sleuthkit.datamodel.BlackboardAttribute.getContext | ( | ) |
Gets the context of this attribute.
Definition at line 1674 of file BlackboardAttribute.java.
String org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString | ( | ) |
Gets the attribute value as a string, formatted as required.
Definition at line 504 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.TimeUtilities.epochToTime(), org.sleuthkit.datamodel.BlackboardArtifact.getDataSource(), org.sleuthkit.datamodel.BlackboardAttribute.getParentArtifact(), org.sleuthkit.datamodel.Image.getTimeZone(), org.sleuthkit.datamodel.BlackboardAttribute.getValueBytes(), org.sleuthkit.datamodel.BlackboardAttribute.getValueDouble(), org.sleuthkit.datamodel.BlackboardAttribute.getValueInt(), org.sleuthkit.datamodel.BlackboardAttribute.getValueLong(), org.sleuthkit.datamodel.BlackboardAttribute.getValueString(), org.sleuthkit.datamodel.BlackboardAttribute.getValueType(), and org.sleuthkit.datamodel.BlackboardAttribute.ATTRIBUTE_TYPE.TSK_READ_STATUS.
Referenced by org.sleuthkit.datamodel.BlackboardArtifact.getShortDescription().
String org.sleuthkit.datamodel.BlackboardAttribute.getModuleName | ( | ) |
Gets the name of the first module identified as a sources of this attribute.
Definition at line 1740 of file BlackboardAttribute.java.
BlackboardArtifact org.sleuthkit.datamodel.BlackboardAttribute.getParentArtifact | ( | ) | throws TskCoreException |
Gets the artifact associated with this attribute. The artifact can be used to get the source content for the artifact as well as any other attributes associated with the artifact.
TskCoreException | If there is no artifact associated with this attribute or there is an error reading from the case database. |
Definition at line 471 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.SleuthkitCase.getBlackboardArtifact().
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString().
List<String> org.sleuthkit.datamodel.BlackboardAttribute.getSources | ( | ) |
Gets the sources of this attribute.
Definition at line 440 of file BlackboardAttribute.java.
byte [] org.sleuthkit.datamodel.BlackboardAttribute.getValueBytes | ( | ) |
Gets the value of this attribute. The value is only valid if the attribute value type is TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.BYTE.
Definition at line 431 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString().
double org.sleuthkit.datamodel.BlackboardAttribute.getValueDouble | ( | ) |
Gets the value of this attribute. The value is only valid if the attribute value type is TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.DOUBLE.
Definition at line 411 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString().
int org.sleuthkit.datamodel.BlackboardAttribute.getValueInt | ( | ) |
Gets the value of this attribute. The value is only valid if the attribute value type is TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.INTEGER.
Definition at line 391 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString().
long org.sleuthkit.datamodel.BlackboardAttribute.getValueLong | ( | ) |
Gets the value of this attribute. The value is only valid if the attribute value type is TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.LONG.
Definition at line 401 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString().
String org.sleuthkit.datamodel.BlackboardAttribute.getValueString | ( | ) |
Gets the value of this attribute. The value is only valid if the attribute value type is TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.STRING.
Definition at line 421 of file BlackboardAttribute.java.
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString(), and org.sleuthkit.datamodel.AbstractContent.getHashSetNames().
TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE org.sleuthkit.datamodel.BlackboardAttribute.getValueType | ( | ) |
Gets the value type.
Definition at line 381 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
Referenced by org.sleuthkit.datamodel.BlackboardAttribute.BlackboardAttribute(), org.sleuthkit.datamodel.BlackboardAttribute.getDisplayString(), and org.sleuthkit.datamodel.BlackboardAttribute.getValueType().
int org.sleuthkit.datamodel.BlackboardAttribute.hashCode | ( | ) |
Definition at line 476 of file BlackboardAttribute.java.
|
protected |
Sets the artifact id.
artifactID | The artifact id. |
Definition at line 1646 of file BlackboardAttribute.java.
|
protected |
Sets the reference to the SleuthkitCase object that represents the case database.
sleuthkitCase | A reference to a SleuthkitCase object. |
Definition at line 1662 of file BlackboardAttribute.java.
String org.sleuthkit.datamodel.BlackboardAttribute.toString | ( | ) |
Definition at line 495 of file BlackboardAttribute.java.
References org.sleuthkit.datamodel.BlackboardAttribute.toString().
Referenced by org.sleuthkit.datamodel.BlackboardArtifact.getShortDescription(), and org.sleuthkit.datamodel.BlackboardAttribute.toString().
Copyright © 2011-2018 Brian Carrier. (carrier -at- sleuthkit -dot- org)
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.