Enum Class ColumnScheme

java.lang.Object
java.lang.Enum<ColumnScheme>
edu.ie3.datamodel.io.csv.timeseries.ColumnScheme
All Implemented Interfaces:
Serializable, Comparable<ColumnScheme>, Constable

@Deprecated(since="3.0", forRemoval=true) public enum ColumnScheme extends Enum<ColumnScheme>
Deprecated, for removal: This API element is subject to removal in a future version.
since 3.0. Use ColumnScheme instead
Yet supported column schemes in individual time series
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Class<? extends Value>
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    static <V extends Value>
    Optional<ColumnScheme>
    parse(Class<V> valueClass)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    static ColumnScheme[]
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ENERGY_PRICE

      public static final ColumnScheme ENERGY_PRICE
      Deprecated, for removal: This API element is subject to removal in a future version.
    • ACTIVE_POWER

      public static final ColumnScheme ACTIVE_POWER
      Deprecated, for removal: This API element is subject to removal in a future version.
    • APPARENT_POWER

      public static final ColumnScheme APPARENT_POWER
      Deprecated, for removal: This API element is subject to removal in a future version.
    • HEAT_DEMAND

      public static final ColumnScheme HEAT_DEMAND
      Deprecated, for removal: This API element is subject to removal in a future version.
    • ACTIVE_POWER_AND_HEAT_DEMAND

      public static final ColumnScheme ACTIVE_POWER_AND_HEAT_DEMAND
      Deprecated, for removal: This API element is subject to removal in a future version.
    • APPARENT_POWER_AND_HEAT_DEMAND

      public static final ColumnScheme APPARENT_POWER_AND_HEAT_DEMAND
      Deprecated, for removal: This API element is subject to removal in a future version.
    • WEATHER

      public static final ColumnScheme WEATHER
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • values

      public static ColumnScheme[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ColumnScheme valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getScheme

      public String getScheme()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • getValueClass

      public Class<? extends Value> getValueClass()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • parse

      public static Optional<ColumnScheme> parse(String key)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • parse

      public static <V extends Value> Optional<ColumnScheme> parse(Class<V> valueClass)
      Deprecated, for removal: This API element is subject to removal in a future version.