All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytekast.netsuite.client.ProjectTaskConstraintType Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ProjectTaskConstraintType. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="ProjectTaskConstraintType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="_asSoonAsPossible"/>
 *     <enumeration value="_fixedStart"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ProjectTaskConstraintType", namespace = "urn:types.scheduling_2017_1.activities.webservices.netsuite.com") @XmlEnum public enum ProjectTaskConstraintType { @XmlEnumValue("_asSoonAsPossible") AS_SOON_AS_POSSIBLE("_asSoonAsPossible"), @XmlEnumValue("_fixedStart") FIXED_START("_fixedStart"); private final String value; ProjectTaskConstraintType(String v) { value = v; } public String value() { return value; } public static ProjectTaskConstraintType fromValue(String v) { for (ProjectTaskConstraintType c: ProjectTaskConstraintType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy