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

io.stepfunc.dnp3.OctetString Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
// This library is provided under the terms of a non-commercial license.
// 
// Please refer to the source repository for details:
// 
// https://github.com/stepfunc/dnp3/blob/master/LICENSE.txt
// 
// Please contact Step Function I/O if you are interested in commercial license:
// 
// [email protected]
package io.stepfunc.dnp3;

import org.joou.*;

/**
 * Octet String point
 */
public final class OctetString
{
    /**
     * Point index
     */
    public UShort index;
    /**
     * Point value
     */
    public java.util.List value;
    
    private OctetString(UShort index, java.util.List value)
    {
            this.index = index;
            this.value = value;
    }
    
    void _assertFieldsNotNull()
    {
        java.util.Objects.requireNonNull(index, "index cannot be null");
        java.util.Objects.requireNonNull(value, "value cannot be null");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy