swim.xml.CommentOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swim-xml Show documentation
Show all versions of swim-xml Show documentation
eXtensible Markup Language (XML) codec that incrementally parses and writes swim-structure values
The newest version!
// Copyright 2015-2024 Nstream, inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package swim.xml;
import swim.codec.Output;
import swim.codec.OutputSettings;
final class CommentOutput extends Output {
final XmlParser xml;
final StringBuilder builder;
OutputSettings settings;
CommentOutput(XmlParser xml, StringBuilder builder, OutputSettings settings) {
this.xml = xml;
this.builder = builder;
this.settings = settings;
}
CommentOutput(XmlParser xml) {
this(xml, new StringBuilder(), OutputSettings.standard());
}
@Override
public boolean isCont() {
return true;
}
@Override
public boolean isFull() {
return false;
}
@Override
public boolean isDone() {
return false;
}
@Override
public boolean isError() {
return false;
}
@Override
public boolean isPart() {
return false;
}
@Override
public Output isPart(boolean isPart) {
return this;
}
@Override
public Output write(int codePoint) {
this.builder.appendCodePoint(codePoint);
return this;
}
@Override
public Output write(String string) {
this.builder.append(string);
return this;
}
@Override
public Output writeln(String string) {
this.builder.append(string).append(this.settings.lineSeparator());
return this;
}
@Override
public Output writeln() {
this.builder.append(this.settings.lineSeparator());
return this;
}
@Override
public OutputSettings settings() {
return this.settings;
}
@Override
public Output settings(OutputSettings settings) {
this.settings = settings;
return this;
}
@Override
public I bind() {
return this.xml.comment(this.builder.toString());
}
@Override
public Output clone() {
return new CommentOutput(this.xml, new StringBuilder(this.builder.toString()), this.settings);
}
@Override
public String toString() {
return this.builder.toString();
}
}