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

dev.galasa.zos3270.internal.datastream.OrderFormFeed Maven / Gradle / Ivy

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

public class OrderFormFeed extends AbstractOrder {

    public static final byte ID = 0x0c;

    public OrderFormFeed() {
    }

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

    public String getText() {
        return " ";
    }

    @Override
    public byte[] getBytes() {
        return new byte[] {ID};
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy