Package hec.model

Interface DistributionErrorTypes

All Known Implementing Classes:
ProbabilityDistributionFunction

public interface DistributionErrorTypes
Distribution Error Types declares the types and number of columns for probability distribution tables. The first two columns are the data pair followed by the error columns.
  • Field Details

    • NONE

      static final int NONE
      No error.
      See Also:
    • NONE_STRING

      static final String NONE_STRING
      See Also:
    • NORMAL

      static final int NORMAL
      Standard deviation.
      See Also:
    • NORMAL_STRING

      static final String NORMAL_STRING
      See Also:
    • LOG_NORMAL

      static final int LOG_NORMAL
      Log standard deviation.
      See Also:
    • LOG_NORMAL_STRING

      static final String LOG_NORMAL_STRING
      See Also:
    • TRIANGULAR

      static final int TRIANGULAR
      Lower bound followed by upper bound.
      See Also:
    • TRIANGULAR_STRING

      static final String TRIANGULAR_STRING
      See Also:
    • UNIFORM

      static final int UNIFORM
      Lower bound followed by upper bound.
      See Also:
    • UNIFORM_STRING

      static final String UNIFORM_STRING
      See Also:
    • NONE_COLUMNS

      static final int NONE_COLUMNS
      The number of colums for the NONE error type.
      See Also:
    • NORMAL_COLUMNS

      static final int NORMAL_COLUMNS
      The number of columns for the NORMAL error type.
      See Also:
    • LOG_NORMAL_COLUMNS

      static final int LOG_NORMAL_COLUMNS
      The number of colums for the LOG_NORMAL error type.
      See Also:
    • TRIANGULAR_COLUMNS

      static final int TRIANGULAR_COLUMNS
      The number of columns for the TRIANGULAR error type.
      See Also:
    • UNIFORM_COLUMNS

      static final int UNIFORM_COLUMNS
      The number of columns for the UNIFORM error type.
      See Also:
    • TYPES

      static final int[] TYPES
      An ordered array of all of the types.
    • TYPES_STRING

      static final String[] TYPES_STRING
    • COLUMN_COUNTS

      static final int[] COLUMN_COUNTS
      An ordered array of all of the column counts.