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

dev.galasa.zos3270.spi.BufferFormFeed Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.zos3270.spi;

import java.nio.charset.Charset;

public class BufferFormFeed extends BufferChar {

    public BufferFormFeed() {
        super((char)0x0c);
    }

    @Override
    public String toString() {
        return "formfeed()";
    }

    @Override
    public String getStringWithoutNulls() {
        return " ";
    }

    @Override
    public char getChar() {
        return ' ';
    }

    @Override
    public byte getFieldEbcdic(Charset codePage) {
        return 0x0c;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy