Package clickDetector.ClickClassifiers
Class ClickIdInformation
java.lang.Object
clickDetector.ClickClassifiers.ClickIdInformation
Class for holding classification information.
- Author:
- Doug Gillespie
-
Field Summary
Modifier and TypeFieldDescriptionint[]
The classifiers in the list which the click passed.int
The first classifier in the list which the click passed.boolean
True to discard thee click if classified other than 0. -
Constructor Summary
ConstructorDescriptionClickIdInformation
(int clickType) ClickIdInformation
(int clickType, boolean discard) -
Method Summary
-
Field Details
-
clickType
public int clickTypeThe first classifier in the list which the click passed. -
discard
public boolean discardTrue to discard thee click if classified other than 0. -
classifiersPassed
public int[] classifiersPassedThe classifiers in the list which the click passed. Each entry is a type flag.
-
-
Constructor Details
-
ClickIdInformation
public ClickIdInformation(int clickType, boolean discard) -
ClickIdInformation
public ClickIdInformation(int clickType)
-