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

info.gratour.jtmodel.trk.UnusualDriveBehav Maven / Gradle / Ivy

Go to download

`jt-core` is a java/scala communication processing library for JT808/JT809/JT1078 standard.

The newest version!
package info.gratour.jtmodel.trk;

public class UnusualDriveBehav {
    private short typ;
    private byte tiredLvl;

    public short getTyp() {
        return typ;
    }

    public void setTyp(short typ) {
        this.typ = typ;
    }

    public byte getTiredLvl() {
        return tiredLvl;
    }

    public void setTiredLvl(byte tiredLvl) {
        this.tiredLvl = tiredLvl;
    }

    @Override
    public String toString() {
        return "UnusualDriveBehavior{" +
                "typ=" + typ +
                ", tiredLvl=" + tiredLvl +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy