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

com.vmware.vim25.HostDatastoreBrowserSearchSpec Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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.XmlType;


/**
 * 

Java class for HostDatastoreBrowserSearchSpec complex type. * *

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

 * <complexType name="HostDatastoreBrowserSearchSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="query" type="{urn:vim25}FileQuery" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="details" type="{urn:vim25}FileQueryFlags" minOccurs="0"/>
 *         <element name="searchCaseInsensitive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="matchPattern" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="sortFoldersFirst" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostDatastoreBrowserSearchSpec", propOrder = { "query", "details", "searchCaseInsensitive", "matchPattern", "sortFoldersFirst" }) public class HostDatastoreBrowserSearchSpec extends DynamicData { protected List query; protected FileQueryFlags details; protected Boolean searchCaseInsensitive; protected List matchPattern; protected Boolean sortFoldersFirst; /** * Gets the value of the query 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 query property. * *

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

     *    getQuery().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FileQuery } * * */ public List getQuery() { if (query == null) { query = new ArrayList(); } return this.query; } /** * Gets the value of the details property. * * @return * possible object is * {@link FileQueryFlags } * */ public FileQueryFlags getDetails() { return details; } /** * Sets the value of the details property. * * @param value * allowed object is * {@link FileQueryFlags } * */ public void setDetails(FileQueryFlags value) { this.details = value; } /** * Gets the value of the searchCaseInsensitive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSearchCaseInsensitive() { return searchCaseInsensitive; } /** * Sets the value of the searchCaseInsensitive property. * * @param value * allowed object is * {@link Boolean } * */ public void setSearchCaseInsensitive(Boolean value) { this.searchCaseInsensitive = value; } /** * Gets the value of the matchPattern 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 matchPattern property. * *

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

     *    getMatchPattern().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getMatchPattern() { if (matchPattern == null) { matchPattern = new ArrayList(); } return this.matchPattern; } /** * Gets the value of the sortFoldersFirst property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSortFoldersFirst() { return sortFoldersFirst; } /** * Sets the value of the sortFoldersFirst property. * * @param value * allowed object is * {@link Boolean } * */ public void setSortFoldersFirst(Boolean value) { this.sortFoldersFirst = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy