jais.messages.nmea.rmc.EStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jais Show documentation
Show all versions of jais Show documentation
Java NMEA AIS decoding library
package jais.messages.nmea.rmc;
public enum EStatus {
A("Active"),
V("Void");
private String description;
private EStatus(String description) {
this.description = description;
}
public String getDescription() {
return this.description;
}
}