001/*
002 *  Licensed to the Apache Software Foundation (ASF) under one
003 *  or more contributor license agreements.  See the NOTICE file
004 *  distributed with this work for additional information
005 *  regarding copyright ownership.  The ASF licenses this file
006 *  to you under the Apache License, Version 2.0 (the
007 *  "License"); you may not use this file except in compliance
008 *  with the License.  You may obtain a copy of the License at
009 *
010 *        http://www.apache.org/licenses/LICENSE-2.0
011 *
012 *  Unless required by applicable law or agreed to in writing,
013 *  software distributed under the License is distributed on an
014 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 *  KIND, either express or implied.  See the License for the
016 *  specific language governing permissions and limitations
017 *  under the License.
018 */
019
020package org.apache.isis.core.commons.encoding;
021
022import java.io.DataInput;
023import java.io.DataInputStream;
024import java.io.IOException;
025
026public interface DataInputExtended extends DataInput {
027
028    public boolean[] readBooleans() throws IOException;
029
030    public char[] readChars() throws IOException;
031
032    public byte[] readBytes() throws IOException;
033
034    public short[] readShorts() throws IOException;
035
036    public int[] readInts() throws IOException;
037
038    public long[] readLongs() throws IOException;
039
040    public float[] readFloats() throws IOException;
041
042    public double[] readDoubles() throws IOException;
043
044    public String[] readUTFs() throws IOException;
045
046    public <T> T readEncodable(Class<T> encodableType) throws IOException;
047
048    public <T> T[] readEncodables(Class<T> elementType) throws IOException;
049
050    public <T> T readSerializable(Class<T> serializableType) throws IOException;
051
052    public <T> T[] readSerializables(Class<T> elementType) throws IOException;
053
054    /**
055     * Underlying {@link DataInputStream} to read in primitives.
056     */
057    DataInputStream getDataInputStream();
058}