Inheritance diagram for kddml.Core.DataMining.SequentialPatterns.Delimiter:
Public Member Functions | |
Delimiter (DelimiterType delimiter) | |
Delimiter (DelimiterType delimiter, GapType gap) | |
DelimiterType | getDELIMITER () |
GapType | getGAP () |
boolean | equals (Object delimiter) |
String | toString () |
Static Public Attributes | |
static final DelimiterManager | DEFAULT |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2004
Company: Universita' di Pisa - Dipartimento di Informatica
|
Builds a new delimiter object setting the gap type to UNKNOWN.
|
|
Constructor given a delimiter type and a gap type.
|
|
Returns the states wheter or not a sequence element occurred within the same event or time period, as defined by a time window, (e.g. session) as the previous one.
Implements kddml.Core.DataMining.SequentialPatterns.DelimiterManager. |
|
Returns the possible existence of sequence elements between this and the previous elements or sequence. True represent an open sequence, which allows for gaps between sequences (as does unknown). In a closed sequence the gap is set to false, indicating that the two elements or sequences being described are consecutive elements in the data. In actual implementation only UNKNOWN gap type is allowed.
Implements kddml.Core.DataMining.SequentialPatterns.DelimiterManager. |
|
Tests if two delimiters are equal.
Implements kddml.Core.DataMining.SequentialPatterns.DelimiterManager. |
|
Return a representation of this object as string.
|
|
Initial value:
new Delimiter(DelimiterType.ACROSS_TIME_WINDOWS, GapType.UNKNOWN)
|