datai/docs/reference-code/com/sforce/soap/tooling/metadata/BotQuickReplyOption.java

146 lines
6.5 KiB
Java

package com.sforce.soap.tooling.metadata;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public class BotQuickReplyOption implements com.sforce.ws.bind.XMLizable {
/**
* Constructor
*/
public BotQuickReplyOption() {}
/* Cache the typeInfo instead of declaring static fields throughout*/
private transient java.util.Map<String, com.sforce.ws.bind.TypeInfo> typeInfoCache = new java.util.HashMap<String, com.sforce.ws.bind.TypeInfo>();
private com.sforce.ws.bind.TypeInfo _lookupTypeInfo(String fieldName, String namespace, String name, String typeNS, String type, int minOcc, int maxOcc, boolean elementForm) {
com.sforce.ws.bind.TypeInfo typeInfo = typeInfoCache.get(fieldName);
if (typeInfo == null) {
typeInfo = new com.sforce.ws.bind.TypeInfo(namespace, name, typeNS, type, minOcc, maxOcc, elementForm);
typeInfoCache.put(fieldName, typeInfo);
}
return typeInfo;
}
/**
* element : literalValue of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean literalValue__is_set = false;
private java.lang.String literalValue;
public java.lang.String getLiteralValue() {
return literalValue;
}
public void setLiteralValue(java.lang.String literalValue) {
this.literalValue = literalValue;
literalValue__is_set = true;
}
protected void setLiteralValue(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.verifyElement(__in, _lookupTypeInfo("literalValue", "urn:metadata.tooling.soap.sforce.com","literalValue","http://www.w3.org/2001/XMLSchema","string",1,1,true))) {
setLiteralValue(__typeMapper.readString(__in, _lookupTypeInfo("literalValue", "urn:metadata.tooling.soap.sforce.com","literalValue","http://www.w3.org/2001/XMLSchema","string",1,1,true), java.lang.String.class));
}
}
private void writeFieldLiteralValue(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("literalValue", "urn:metadata.tooling.soap.sforce.com","literalValue","http://www.w3.org/2001/XMLSchema","string",1,1,true), literalValue, literalValue__is_set);
}
/**
* element : quickReplyOptionIdentifier of type {http://www.w3.org/2001/XMLSchema}string
* java type: java.lang.String
*/
private boolean quickReplyOptionIdentifier__is_set = false;
private java.lang.String quickReplyOptionIdentifier;
public java.lang.String getQuickReplyOptionIdentifier() {
return quickReplyOptionIdentifier;
}
public void setQuickReplyOptionIdentifier(java.lang.String quickReplyOptionIdentifier) {
this.quickReplyOptionIdentifier = quickReplyOptionIdentifier;
quickReplyOptionIdentifier__is_set = true;
}
protected void setQuickReplyOptionIdentifier(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__in.peekTag();
if (__typeMapper.isElement(__in, _lookupTypeInfo("quickReplyOptionIdentifier", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true))) {
setQuickReplyOptionIdentifier(__typeMapper.readString(__in, _lookupTypeInfo("quickReplyOptionIdentifier", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true), java.lang.String.class));
}
}
private void writeFieldQuickReplyOptionIdentifier(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
__typeMapper.writeObject(__out, _lookupTypeInfo("quickReplyOptionIdentifier", "urn:metadata.tooling.soap.sforce.com","quickReplyOptionIdentifier","http://www.w3.org/2001/XMLSchema","string",0,1,true), quickReplyOptionIdentifier, quickReplyOptionIdentifier__is_set);
}
/**
*/
@Override
public void write(javax.xml.namespace.QName __element,
com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper)
throws java.io.IOException {
__out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart());
writeFields(__out, __typeMapper);
__out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart());
}
protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out,
com.sforce.ws.bind.TypeMapper __typeMapper)
throws java.io.IOException {
writeFields1(__out, __typeMapper);
}
@Override
public void load(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
__typeMapper.consumeStartTag(__in);
loadFields(__in, __typeMapper);
__typeMapper.consumeEndTag(__in);
}
protected void loadFields(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
loadFields1(__in, __typeMapper);
}
@Override
public String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder();
sb.append("[BotQuickReplyOption ");
toString1(sb);
sb.append("]\n");
return sb.toString();
}
private void toStringHelper(StringBuilder sb, String name, Object value) {
sb.append(' ').append(name).append("='").append(com.sforce.ws.util.Verbose.toString(value)).append("'\n");
}
private void writeFields1(com.sforce.ws.parser.XmlOutputStream __out,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException {
writeFieldLiteralValue(__out, __typeMapper);
writeFieldQuickReplyOptionIdentifier(__out, __typeMapper);
}
private void loadFields1(com.sforce.ws.parser.XmlInputStream __in,
com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException {
setLiteralValue(__in, __typeMapper);
setQuickReplyOptionIdentifier(__in, __typeMapper);
}
private void toString1(StringBuilder sb) {
toStringHelper(sb, "literalValue", literalValue);
toStringHelper(sb, "quickReplyOptionIdentifier", quickReplyOptionIdentifier);
}
}