38 lines
1016 B
Java
38 lines
1016 B
Java
|
|
package com.sforce.soap.partner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface ISoqlCondition extends com.sforce.soap.partner.ISoqlWhereCondition {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : field of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getField();
|
||
|
|
|
||
|
|
public void setField(java.lang.String field);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : operator of type {urn:partner.soap.sforce.com}soqlOperator
|
||
|
|
* java type: com.sforce.soap.partner.SoqlOperator
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.SoqlOperator getOperator();
|
||
|
|
|
||
|
|
public void setOperator(com.sforce.soap.partner.SoqlOperator operator);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : values of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getValues();
|
||
|
|
|
||
|
|
public void setValues(java.lang.String[] values);
|
||
|
|
|
||
|
|
|
||
|
|
}
|