Package cc.mallet.pipe.tsf
Class CountMatches
- java.lang.Object
-
- cc.mallet.pipe.Pipe
-
- cc.mallet.pipe.tsf.CountMatches
-
- All Implemented Interfaces:
AlphabetCarrying
,java.io.Serializable
public class CountMatches extends Pipe
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
BINARY_COUNT
static int
INTEGER_COUNT
static int
NORMALIZED_COUNT
static int
OVER_MAX
-
Constructor Summary
Constructors Constructor Description CountMatches(java.lang.String featureName, java.util.regex.Pattern regex)
CountMatches(java.lang.String featureName, java.util.regex.Pattern regex, int countType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Instance
pipe(Instance carrier)
Really this should be 'protected', but isn't for historical reasons.-
Methods inherited from class cc.mallet.pipe.Pipe
alphabetsMatch, getAlphabet, getAlphabets, getDataAlphabet, getInstanceId, getTargetAlphabet, instanceFrom, instancesFrom, instancesFrom, isDataAlphabetSet, isTargetProcessing, newIteratorFrom, preceedingPipeDataAlphabetNotification, preceedingPipeTargetAlphabetNotification, precondition, readResolve, setDataAlphabet, setOrCheckDataAlphabet, setOrCheckTargetAlphabet, setTargetAlphabet, setTargetProcessing
-
-
-
-
Field Detail
-
INTEGER_COUNT
public static final int INTEGER_COUNT
- See Also:
- Constant Field Values
-
BINARY_COUNT
public static final int BINARY_COUNT
- See Also:
- Constant Field Values
-
NORMALIZED_COUNT
public static final int NORMALIZED_COUNT
- See Also:
- Constant Field Values
-
OVER_MAX
public static final int OVER_MAX
- See Also:
- Constant Field Values
-
-