
tsg.ns.wsdl.coop.EmployeeBonusTargetPayFrequency Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for EmployeeBonusTargetPayFrequency.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="EmployeeBonusTargetPayFrequency">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_annually"/>
* <enumeration value="_monthly"/>
* <enumeration value="_oneTime"/>
* <enumeration value="_quarterly"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "EmployeeBonusTargetPayFrequency", namespace = "urn:types.employees_2023_1.lists.webservices.netsuite.com")
@XmlEnum
public enum EmployeeBonusTargetPayFrequency {
@XmlEnumValue("_annually")
ANNUALLY("_annually"),
@XmlEnumValue("_monthly")
MONTHLY("_monthly"),
@XmlEnumValue("_oneTime")
ONE_TIME("_oneTime"),
@XmlEnumValue("_quarterly")
QUARTERLY("_quarterly");
private final String value;
EmployeeBonusTargetPayFrequency(String v) {
value = v;
}
public String value() {
return value;
}
public static EmployeeBonusTargetPayFrequency fromValue(String v) {
for (EmployeeBonusTargetPayFrequency c: EmployeeBonusTargetPayFrequency.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy