com.prowidesoftware.swift.model.mx.dic.PeriodUnit2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PeriodUnit2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "PeriodUnit2Code")
@XmlEnum
public enum PeriodUnit2Code {
/**
* Period unit expressed in hours.
*
*/
HOUR,
/**
* Half days
*
*/
HFDA,
/**
* Counted in days.
*
*/
DAYS,
/**
* Counted in weeks.
*
*/
WEEK,
/**
* Counted in months.
*
*/
MNTH,
/**
* Counted in years.
*
*/
YEAR,
/**
* Period unit expressed in minutes
*
*/
MINU,
/**
* Counted in some other unit.
*
*/
OTHR;
public String value() {
return name();
}
public static PeriodUnit2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy