All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.flysium.io.yew.common.serialize.DataOutput Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2018-2025 the original author or authors.
 *
 * 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 com.github.flysium.io.yew.common.serialize;

import java.io.IOException;


/**
 * Data output.
 *
 * @author Sven Augustus
 * @version 1.0
 */
public interface DataOutput {

	/**
	 * Write boolean.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeBoolean(boolean v) throws IOException;

	/**
	 * Write byte.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeByte(byte v) throws IOException;

	/**
	 * Write short.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeShort(short v) throws IOException;

	/**
	 * Write integer.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeInt(int v) throws IOException;

	/**
	 * Write long.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeLong(long v) throws IOException;

	/**
	 * Write float.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeFloat(float v) throws IOException;

	/**
	 * Write double.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeDouble(double v) throws IOException;

	/**
	 * Write string.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeUTF(String v) throws IOException;

	/**
	 * Write byte array.
	 *
	 * @param v value.
	 * @throws IOException if there is any io error.
	 */
	void writeBytes(byte[] v) throws IOException;

	/**
	 * Write byte array.
	 *
	 * @param v value.
	 * @param off offset.
	 * @param len length.
	 * @throws IOException if there is any io error.
	 */
	void writeBytes(byte[] v, int off, int len) throws IOException;

	/**
	 * Flush buffer.
	 *
	 * @throws IOException if there is any io error.
	 */
	void flushBuffer() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy