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

com.fasterxml.aalto.out.ByteWName Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
/* Woodstox Lite ("wool") XML processor
 *
 * Copyright (c) 2006- Tatu Saloranta, [email protected]
 *
 * Licensed under the License specified in the file LICENSE which is
 * included with the source code.
 * You may not use this file except in compliance with the License.
 *
 * 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.fasterxml.aalto.out;

import java.io.*;

/**
 * This class is used to represent all names that are to be serialized
 * to byte streams, independent of specific encoding used (they will
 * be stored on per-encoding symbol tables however).
 */
public final class ByteWName
    extends WName
{
    final byte[] _bytes;

    protected ByteWName(String ln, byte[] bytes)
    {
        super(ln);
        _bytes = bytes;
    }

    protected ByteWName(String prefix, String ln, byte[] bytes)
    {
        super(prefix, ln);
        _bytes = bytes;
    }

    @Override
    public final int serializedLength()
    {
        return _bytes.length;
    }

    @Override
    public int appendBytes(byte[] buffer, int offset)
    {
        int len = _bytes.length;
        System.arraycopy(_bytes, 0, buffer, offset, len);
        return len;
    }

    @Override
    public void writeBytes(OutputStream out) throws IOException
    {
        out.write(_bytes);
    }

    @Override
    public int appendChars(char[] buffer, int offset)
    {
        throw new RuntimeException("Internal error: appendChars() should never be called");
    }

    @Override
    public void writeChars(Writer w) throws IOException
    {
        throw new RuntimeException("Internal error: writeChars() should never be called");
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy