Enum Class ColumnScheme

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

public enum ColumnScheme extends Enum<ColumnScheme>
Supported column schemes in individual time series
  • Enum Constant Details

    • ENERGY_PRICE

      public static final ColumnScheme ENERGY_PRICE
    • ACTIVE_POWER

      public static final ColumnScheme ACTIVE_POWER
    • APPARENT_POWER

      public static final ColumnScheme APPARENT_POWER
    • HEAT_DEMAND

      public static final ColumnScheme HEAT_DEMAND
    • ACTIVE_POWER_AND_HEAT_DEMAND

      public static final ColumnScheme ACTIVE_POWER_AND_HEAT_DEMAND
    • APPARENT_POWER_AND_HEAT_DEMAND

      public static final ColumnScheme APPARENT_POWER_AND_HEAT_DEMAND
    • WEATHER

      public static final ColumnScheme WEATHER
  • Method Details

    • values

      public static ColumnScheme[] values()
      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)
      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()
    • getValueClass

      public Class<? extends Value> getValueClass()
    • parse

      public static Optional<ColumnScheme> parse(String key)
    • parse

      public static <V extends Value> Optional<ColumnScheme> parse(Class<V> valueClass)