001/** 002 * 003 * Copyright 2020 Florian Schmaus. 004 * 005 * Licensed under the Apache License, Version 2.0 (the "License"); 006 * you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.jivesoftware.smack.util; 018 019import java.io.IOException; 020 021public class ExtendedAppendable implements Appendable { 022 023 private final Appendable appendable; 024 025 public ExtendedAppendable(Appendable appendable) { 026 this.appendable = appendable; 027 } 028 029 @Override 030 public ExtendedAppendable append(CharSequence csq) throws IOException { 031 appendable.append(csq); 032 return this; 033 } 034 035 @Override 036 public ExtendedAppendable append(CharSequence csq, int start, int end) throws IOException { 037 appendable.append(csq, start, end); 038 return this; 039 } 040 041 @Override 042 public ExtendedAppendable append(char c) throws IOException { 043 appendable.append(c); 044 return this; 045 } 046 047 public ExtendedAppendable append(boolean b) throws IOException { 048 appendable.append(String.valueOf(b)); 049 return this; 050 } 051 052 public ExtendedAppendable append(int i) throws IOException { 053 appendable.append(String.valueOf(i)); 054 return this; 055 } 056}