com.prowidesoftware.swift.model.mx.dic.EnergyQuantityUnit1Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for EnergyQuantityUnit1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "EnergyQuantityUnit1Code")
@XmlEnum
public enum EnergyQuantityUnit1Code {
/**
* Therm per day.
*
*/
THMD,
/**
* Mega Watt hour per hour.
*
*/
MWHH,
/**
* Mega Watt hour per day.
*
*/
MWHD,
/**
* Mega Watt.
*
*/
MWAT,
/**
* MTherm per day.
*
*/
MTMD,
/**
* Mcm per day.
*
*/
MCMD,
/**
* Kilo Watt hour per hour.
*
*/
KWHH,
/**
* Kilo Watt hour per day.
*
*/
KWHD,
/**
* Kilo Watt.
*
*/
KWAT,
/**
* KTherm per day.
*
*/
KTMD,
/**
* Giga Watt hour per hour.
*
*/
GWHH,
/**
* Giga Watt hour per day.
*
*/
GWHD,
/**
* Giga Watt.
*
*/
GWAT;
public String value() {
return name();
}
public static EnergyQuantityUnit1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy