com.intuit.ipp.data.TimeEntryUsedForPaychecksEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipp-v3-java-data Show documentation
Show all versions of ipp-v3-java-data Show documentation
IPP Java V3 DevKit Data project - FMS Entities generation
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.12 at 12:19:07 PM IST
//
package com.intuit.ipp.data;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TimeEntryUsedForPaychecksEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="TimeEntryUsedForPaychecksEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="NotSet"/>
* <enumeration value="DoNotUseTimeEntry"/>
* <enumeration value="UseTimeEntry"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TimeEntryUsedForPaychecksEnum")
@XmlEnum
public enum TimeEntryUsedForPaychecksEnum {
@XmlEnumValue("NotSet")
NOT_SET("NotSet"),
@XmlEnumValue("DoNotUseTimeEntry")
DO_NOT_USE_TIME_ENTRY("DoNotUseTimeEntry"),
@XmlEnumValue("UseTimeEntry")
USE_TIME_ENTRY("UseTimeEntry");
private final String value;
TimeEntryUsedForPaychecksEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static TimeEntryUsedForPaychecksEnum fromValue(String v) {
for (TimeEntryUsedForPaychecksEnum c: TimeEntryUsedForPaychecksEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy