info.gratour.jtmodel.trk.UnusualDriveBehav Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt-core Show documentation
Show all versions of jt-core Show documentation
`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