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

gurux.dlms.SingleReadResponse Maven / Gradle / Ivy

There is a newer version: 4.0.72
Show newest version
//
// --------------------------------------------------------------------------
//  Gurux Ltd

package gurux.dlms;

/**
 * Enumerates single read response types.
 */
final class SingleReadResponse {
    /*
     * Constructor.
     */
    private SingleReadResponse() {

    }

    /**
     * Normal data.
     */
    static final byte DATA = 0;
    /**
     * Error has occurred on read.
     */
    static final byte DATA_ACCESS_ERROR = 1;
    /**
     * Return data as blocks.
     */
    static final byte DATA_BLOCK_RESULT = 2;
    /**
     * Return block number.
     */
    static final byte BLOCK_NUMBER = 3;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy