Class LicensePlateResult
-
- All Implemented Interfaces:
public class LicensePlateResult
Describes result information of scanning license plates
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
LicensePlateResult.Area
The area information
-
Field Summary
Fields Modifier and Type Field Description public String
country
public LicensePlateResult.Area
area
public String
plateText
public Boolean
vehicleInspectionFound
public String
vehicleInspectionYear
public String
vehicleInspectionMonth
public Boolean
vehicleInspectionValid
-
Constructor Summary
Constructors Constructor Description LicensePlateResult()
-
Method Summary
Modifier and Type Method Description String
getCountry()
The country information (Required) void
setCountry(String country)
The country information (Required) LicensePlateResult.Area
getArea()
The area information void
setArea(LicensePlateResult.Area area)
The area information String
getPlateText()
The plate text (Required) void
setPlateText(String plateText)
The plate text (Required) Boolean
getVehicleInspectionFound()
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. void
setVehicleInspectionFound(Boolean vehicleInspectionFound)
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. String
getVehicleInspectionYear()
(Optional) The year depicted on the Visual Inspection Sticker. void
setVehicleInspectionYear(String vehicleInspectionYear)
(Optional) The year depicted on the Visual Inspection Sticker. String
getVehicleInspectionMonth()
(Optional) The month depicted on the Visual Inspection Sticker. void
setVehicleInspectionMonth(String vehicleInspectionMonth)
(Optional) The month depicted on the Visual Inspection Sticker. Boolean
getVehicleInspectionValid()
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future. void
setVehicleInspectionValid(Boolean vehicleInspectionValid)
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future. String
toString()
int
hashCode()
boolean
equals(Object other)
-
-
Method Detail
-
getCountry
String getCountry()
The country information (Required)
-
setCountry
void setCountry(String country)
The country information (Required)
-
getArea
LicensePlateResult.Area getArea()
The area information
-
setArea
void setArea(LicensePlateResult.Area area)
The area information
-
getPlateText
String getPlateText()
The plate text (Required)
-
setPlateText
void setPlateText(String plateText)
The plate text (Required)
-
getVehicleInspectionFound
Boolean getVehicleInspectionFound()
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. If the config is MANDATORY, this field is always true.
-
setVehicleInspectionFound
void setVehicleInspectionFound(Boolean vehicleInspectionFound)
(Optional) If vehicleInspectionSticker config is OPTIONAL, this is true if a Visual Inspection Sticker was found, false otherwise. If the config is MANDATORY, this field is always true.
-
getVehicleInspectionYear
String getVehicleInspectionYear()
(Optional) The year depicted on the Visual Inspection Sticker.
-
setVehicleInspectionYear
void setVehicleInspectionYear(String vehicleInspectionYear)
(Optional) The year depicted on the Visual Inspection Sticker.
-
getVehicleInspectionMonth
String getVehicleInspectionMonth()
(Optional) The month depicted on the Visual Inspection Sticker.
-
setVehicleInspectionMonth
void setVehicleInspectionMonth(String vehicleInspectionMonth)
(Optional) The month depicted on the Visual Inspection Sticker.
-
getVehicleInspectionValid
Boolean getVehicleInspectionValid()
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future.
-
setVehicleInspectionValid
void setVehicleInspectionValid(Boolean vehicleInspectionValid)
(Optional) This is true, if the Visual Inspection Sticker depicts a date in the future.
-
hashCode
int hashCode()
-
-
-
-