Tabnine Logo
RowAnnotations
Code IndexAdd Tabnine to your IDE (free)

How to use
RowAnnotations
in
org.datacleaner.storage

Best Java code snippets using org.datacleaner.storage.RowAnnotations (Showing top 9 results out of 315)

origin: datacleaner/DataCleaner

public BooleanAnalyzer(final InputColumn<Boolean>[] columns) {
  _columns = columns;
  _annotationFactory = RowAnnotations.getDefaultFactory();
}
origin: datacleaner/DataCleaner

  @Override
  public RowAnnotationFactory createRowAnnotationFactory() {
    return RowAnnotations.getInMemoryFactory(_maxSampleSets, _maxSampleRecords);
  }
}
origin: datacleaner/DataCleaner

/**
 * Constructor used for testing and ad-hoc purposes
 *
 * @param column
 * @param groupColumn
 * @param recordUniqueValues
 */
public ValueDistributionAnalyzer(final InputColumn<?> column, final InputColumn<String> groupColumn,
    final boolean recordUniqueValues) {
  this();
  _column = column;
  _groupColumn = groupColumn;
  _recordUniqueValues = recordUniqueValues;
  _annotationFactory = RowAnnotations.getDefaultFactory();
}
origin: datacleaner/DataCleaner

public static RowAnnotationFactory getDefaultFactory() {
  return getInMemoryFactory();
}
origin: datacleaner/DataCleaner

public RowAnnotation getAnnotation() {
  if (_annotation == null) {
    // only occurs for deserialized instances
    return RowAnnotations.getDefaultFactory().createAnnotation();
  }
  return _annotation;
}
origin: datacleaner/DataCleaner

public static RowAnnotationFactory getInMemoryFactory() {
  return getInMemoryFactory(500, 500);
}
origin: datacleaner/DataCleaner

@SafeVarargs
public StringAnalyzer(final InputColumn<String>... columns) {
  _columns = columns;
  _annotationFactory = RowAnnotations.getDefaultFactory();
  init();
}
origin: datacleaner/DataCleaner

/**
 * Alternative constructor for more ad-hoc usage. Uses an in memory storage
 * mechanism with a threshold on how many rows to store.
 *
 * @param configuration
 * @param inMemoryRowThreshold
 */
public DefaultPatternFinder(final TokenizerConfiguration configuration, final int inMemoryRowThreshold) {
  super(configuration);
  _annotations = new ConcurrentHashMap<>();
  _annotationFactory = RowAnnotations.getInMemoryFactory(100, inMemoryRowThreshold);
}
origin: datacleaner/DataCleaner

@SafeVarargs
public NumberAnalyzer(final InputColumn<? extends Number>... columns) {
  this();
  _columns = columns;
  _annotationFactory = RowAnnotations.getDefaultFactory();
  init();
}
org.datacleaner.storageRowAnnotations

Most used methods

  • getDefaultFactory
  • getInMemoryFactory

Popular in Java

  • Updating database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • putExtra (Intent)
  • getContentResolver (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now