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

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

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for SearchEnumMultiSelectCustomField complex type. * *

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

 * <complexType name="SearchEnumMultiSelectCustomField">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchCustomField">
 *       <sequence>
 *         <element name="searchValue" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="operator" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}SearchEnumMultiSelectFieldOperator" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchEnumMultiSelectCustomField", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "searchValue" }) public class SearchEnumMultiSelectCustomField extends SearchCustomField implements Serializable { protected List searchValue; @XmlAttribute(name = "operator") protected SearchEnumMultiSelectFieldOperator operator; /** * Gets the value of the searchValue property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the searchValue property. * *

* For example, to add a new item, do as follows: *

     *    getSearchValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSearchValue() { if (searchValue == null) { searchValue = new ArrayList(); } return this.searchValue; } /** * Gets the value of the operator property. * * @return * possible object is * {@link SearchEnumMultiSelectFieldOperator } * */ public SearchEnumMultiSelectFieldOperator getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link SearchEnumMultiSelectFieldOperator } * */ public void setOperator(SearchEnumMultiSelectFieldOperator value) { this.operator = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy