com.nawforce.runforce.System.XmlStreamWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runforce Show documentation
Show all versions of runforce Show documentation
Salesforce platform type stubs
/*
Copyright (c) 2019 Kevin Jones, All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
*/
package com.nawforce.runforce.System;
@SuppressWarnings("unused")
public class XmlStreamWriter {
public XmlStreamWriter() {throw new java.lang.UnsupportedOperationException();}
public void close() {throw new java.lang.UnsupportedOperationException();}
public String getXmlString() {throw new java.lang.UnsupportedOperationException();}
public void setDefaultNamespace(String uri) {throw new java.lang.UnsupportedOperationException();}
public void writeAttribute(String prefix, String namespaceURI, String localName, String value) {throw new java.lang.UnsupportedOperationException();}
public void writeCData(String data) {throw new java.lang.UnsupportedOperationException();}
public void writeCharacters(String text) {throw new java.lang.UnsupportedOperationException();}
public void writeComment(String data) {throw new java.lang.UnsupportedOperationException();}
public void writeDefaultNamespace(String namesapceURI) {throw new java.lang.UnsupportedOperationException();}
public void writeEmptyElement(String prefix, String localName, String namesapceURI) {throw new java.lang.UnsupportedOperationException();}
public void writeEndDocument() {throw new java.lang.UnsupportedOperationException();}
public void writeEndElement() {throw new java.lang.UnsupportedOperationException();}
public void writeNamespace(String prefix, String namesapceURI) {throw new java.lang.UnsupportedOperationException();}
public void writeProcessingInstruction(String target, String data) {throw new java.lang.UnsupportedOperationException();}
public void writeStartDocument(String encoding, String version) {throw new java.lang.UnsupportedOperationException();}
public void writeStartElement(String prefix, String localName, String namesapceURI) {throw new java.lang.UnsupportedOperationException();}
}