Class FactsCore


  • public final class FactsCore
    extends java.lang.Object
    A set of core facts for the Analysis in question.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected char decimalSeparator
      Get the Decimal Separator used to interpret Doubles.
      protected java.lang.Double keyConfidence
      The percentage confidence (0-1.0) that the observed stream is a Key field.
      protected boolean leadingWhiteSpace
      Do any elements have leading White Space?
      protected long leadingZeroCount
      The number of leading zeros seen in sample set.
      protected int maxRawLength
      The maximum length (not trimmed) - Only relevant for Numeric, Boolean and String.
      protected int minRawLength
      The minimum length (not trimmed) - Only relevant for Numeric, Boolean and String.
      protected boolean multiline
      Are any elements multi-line?
      protected boolean trailingWhiteSpace
      Do any elements have trailing White Space?
      protected java.lang.Double uniqueness
      What is the uniqueness percentage of this column.
    • Constructor Summary

      Constructors 
      Constructor Description
      FactsCore()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • minRawLength

        protected int minRawLength
        The minimum length (not trimmed) - Only relevant for Numeric, Boolean and String. Note: For String and Boolean types this length includes any whitespace.
      • maxRawLength

        protected int maxRawLength
        The maximum length (not trimmed) - Only relevant for Numeric, Boolean and String. Note: For String and Boolean types this length includes any whitespace.
      • multiline

        protected boolean multiline
        Are any elements multi-line?
      • leadingWhiteSpace

        protected boolean leadingWhiteSpace
        Do any elements have leading White Space?
      • trailingWhiteSpace

        protected boolean trailingWhiteSpace
        Do any elements have trailing White Space?
      • keyConfidence

        protected java.lang.Double keyConfidence
        The percentage confidence (0-1.0) that the observed stream is a Key field.
      • leadingZeroCount

        protected long leadingZeroCount
        The number of leading zeros seen in sample set. Only relevant for type Long.
      • decimalSeparator

        protected char decimalSeparator
        Get the Decimal Separator used to interpret Doubles. Only relevant for type double.
      • uniqueness

        protected java.lang.Double uniqueness
        What is the uniqueness percentage of this column.
    • Constructor Detail

      • FactsCore

        public FactsCore()